* LocalServerChannel is not a LocalChannel
* LocalChannel.getConfig() is not necessary
This commit is contained in:
parent
4021ef4692
commit
3d0ed106fc
@ -23,7 +23,6 @@
|
|||||||
package org.jboss.netty.channel.local;
|
package org.jboss.netty.channel.local;
|
||||||
|
|
||||||
import org.jboss.netty.channel.Channel;
|
import org.jboss.netty.channel.Channel;
|
||||||
import org.jboss.netty.channel.ChannelConfig;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A {@link Channel} for the local transport.
|
* A {@link Channel} for the local transport.
|
||||||
@ -34,7 +33,6 @@ import org.jboss.netty.channel.ChannelConfig;
|
|||||||
* @version $Rev$, $Date$
|
* @version $Rev$, $Date$
|
||||||
*/
|
*/
|
||||||
public interface LocalChannel extends Channel {
|
public interface LocalChannel extends Channel {
|
||||||
ChannelConfig getConfig();
|
|
||||||
LocalAddress getLocalAddress();
|
LocalAddress getLocalAddress();
|
||||||
LocalAddress getRemoteAddress();
|
LocalAddress getRemoteAddress();
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,6 @@
|
|||||||
*/
|
*/
|
||||||
package org.jboss.netty.channel.local;
|
package org.jboss.netty.channel.local;
|
||||||
|
|
||||||
import org.jboss.netty.channel.ChannelConfig;
|
|
||||||
import org.jboss.netty.channel.ServerChannel;
|
import org.jboss.netty.channel.ServerChannel;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -34,7 +33,6 @@ import org.jboss.netty.channel.ServerChannel;
|
|||||||
* @version $Rev$, $Date$
|
* @version $Rev$, $Date$
|
||||||
*/
|
*/
|
||||||
public interface LocalServerChannel extends ServerChannel {
|
public interface LocalServerChannel extends ServerChannel {
|
||||||
ChannelConfig getConfig();
|
|
||||||
LocalAddress getLocalAddress();
|
LocalAddress getLocalAddress();
|
||||||
LocalAddress getRemoteAddress();
|
LocalAddress getRemoteAddress();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user