Package io.netty.channel
Interface ServerChannel
-
- All Superinterfaces:
AttributeMap
,Channel
,ChannelOutboundInvoker
,java.lang.Comparable<Channel>
- All Known Subinterfaces:
ServerDomainSocketChannel
,ServerSocketChannel
- All Known Implementing Classes:
AbstractEpollServerChannel
,AbstractKQueueServerChannel
,AbstractServerChannel
,EpollServerDomainSocketChannel
,EpollServerSocketChannel
,KQueueServerDomainSocketChannel
,KQueueServerSocketChannel
,LocalServerChannel
,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.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.netty.channel.Channel
Channel.Unsafe
-
-
Method Summary
-
Methods inherited from interface io.netty.util.AttributeMap
attr, hasAttr
-
Methods inherited from interface io.netty.channel.Channel
alloc, bytesBeforeUnwritable, bytesBeforeWritable, closeFuture, config, eventLoop, flush, id, isActive, isOpen, isRegistered, isWritable, localAddress, metadata, parent, pipeline, read, remoteAddress, unsafe
-
Methods inherited from interface io.netty.channel.ChannelOutboundInvoker
bind, bind, close, close, connect, connect, connect, connect, deregister, deregister, disconnect, disconnect, newFailedFuture, newProgressivePromise, newPromise, newSucceededFuture, voidPromise, write, write, writeAndFlush, writeAndFlush
-
-