-
- All Superinterfaces:
AttributeMap
,Channel
,ChannelOutboundInvoker
,Comparable<Channel>
,FuturePromiseFactory
,IoHandle
- All Known Subinterfaces:
ServerSocketChannel
- All Known Implementing Classes:
AbstractServerChannel
,EpollServerSocketChannel
,KQueueServerSocketChannel
,LocalServerChannel
,NioServerSocketChannel
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.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventLoopGroup
childEventLoopGroup()
Returns theEventLoopGroup
that is used to register the childChannel
s on.-
Methods inherited from interface io.netty5.util.AttributeMap
attr, hasAttr
-
Methods inherited from interface io.netty5.channel.Channel
bind, bufferAllocator, close, closeFuture, connect, connect, deregister, disconnect, executor, flush, getOption, id, isActive, isOpen, isOptionSupported, isShutdown, isWritable, localAddress, metadata, parent, pipeline, read, register, remoteAddress, sendOutboundEvent, setOption, shutdown, writableBytes, write, writeAndFlush
-
Methods inherited from interface io.netty5.channel.ChannelOutboundInvoker
newFailedFuture, newPromise, newSucceededFuture, newSucceededFuture
-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface io.netty5.channel.IoHandle
isRegistered
-
-
-
-
Method Detail
-
childEventLoopGroup
EventLoopGroup childEventLoopGroup()
Returns theEventLoopGroup
that is used to register the childChannel
s on.
-
-