Package org.jboss.netty.channel
Interface ServerChannel
-
- All Known Subinterfaces:
LocalServerChannel
,ServerSocketChannel
- All Known Implementing Classes:
AbstractServerChannel
,DefaultLocalServerChannel
,NioServerSocketChannel
,OioServerSocketChannel
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
-
-