Package org.jboss.netty.channel
Interface ServerChannel
-
- All Superinterfaces:
Channel
,Comparable<Channel>
- All Known Subinterfaces:
LocalServerChannel
,ServerSocketChannel
- All Known Implementing Classes:
AbstractServerChannel
public interface ServerChannel extends Channel
AChannel
that accepts an incoming connection attempt and creates its childChannel
s by accepting them.ServerSocketChannel
is a good example.
-
-
Field Summary
-
Fields inherited from interface org.jboss.netty.channel.Channel
OP_NONE, OP_READ, OP_READ_WRITE, OP_WRITE
-
-
Method Summary
-
Methods inherited from interface org.jboss.netty.channel.Channel
bind, close, connect, disconnect, getAttachment, getCloseFuture, getConfig, getFactory, getId, getInterestOps, getLocalAddress, getParent, getPipeline, getRemoteAddress, getUserDefinedWritability, isBound, isConnected, isOpen, isReadable, isWritable, setAttachment, setInterestOps, setReadable, setUserDefinedWritability, unbind, write, write
-
Methods inherited from interface java.lang.Comparable
compareTo
-
-