Package io.netty.channel
Interface ServerChannel
-
- All Superinterfaces:
AttributeMap
,Channel
,ChannelOutboundInvoker
,java.lang.Comparable<Channel>
- All Known Subinterfaces:
SctpServerChannel
,ServerDomainSocketChannel
,ServerSocketChannel
,UdtServerChannel
- All Known Implementing Classes:
AbstractEpollServerChannel
,AbstractKQueueServerChannel
,AbstractServerChannel
,EpollServerDomainSocketChannel
,EpollServerSocketChannel
,IoUringServerSocketChannel
,KQueueServerDomainSocketChannel
,KQueueServerSocketChannel
,LocalServerChannel
,NioSctpServerChannel
,NioServerDomainSocketChannel
,NioServerSocketChannel
,NioUdtAcceptorChannel
,NioUdtByteAcceptorChannel
,NioUdtMessageAcceptorChannel
,OioSctpServerChannel
,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, bind, bind, bytesBeforeUnwritable, bytesBeforeWritable, close, close, closeFuture, config, connect, connect, connect, connect, deregister, deregister, disconnect, disconnect, eventLoop, flush, getOption, id, isActive, isOpen, isRegistered, isWritable, localAddress, metadata, newFailedFuture, newProgressivePromise, newPromise, newSucceededFuture, parent, pipeline, read, remoteAddress, setOption, unsafe, voidPromise, write, write, writeAndFlush, writeAndFlush
-
-