-
- All Superinterfaces:
AttributeMap
,Channel
,ChannelOutboundInvoker
,Comparable<Channel>
,FuturePromiseFactory
,IoHandle
- All Known Implementing Classes:
EpollSocketChannel
,KQueueSocketChannel
,NioSocketChannel
public interface SocketChannel extends Channel
A SocketChannel
.Available options
In addition to the options provided byChannel
,SocketChannel
allows the following options in the option map:
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServerSocketChannel
parent()
Returns the parent of this channel.-
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, 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
-
parent
ServerSocketChannel parent()
Description copied from interface:Channel
Returns the parent of this channel.
-
-