Package io.netty.channel.nio
Interface AbstractNioChannel.NioUnsafe
-
- All Superinterfaces:
Channel.Unsafe
- All Known Implementing Classes:
AbstractNioByteChannel.NioByteUnsafe
,AbstractNioChannel.AbstractNioUnsafe
- Enclosing class:
- AbstractNioChannel
public static interface AbstractNioChannel.NioUnsafe extends Channel.Unsafe
SpecialChannel.Unsafe
sub-type which allows to access the underlyingSelectableChannel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SelectableChannel
ch()
Return underlyingSelectableChannel
void
finishConnect()
Finish connectvoid
forceFlush()
void
read()
Read from underlyingSelectableChannel
-
Methods inherited from interface io.netty.channel.Channel.Unsafe
beginRead, bind, close, closeForcibly, connect, deregister, disconnect, flush, localAddress, outboundBuffer, recvBufAllocHandle, register, remoteAddress, voidPromise, write
-
-
-
-
Method Detail
-
ch
SelectableChannel ch()
Return underlyingSelectableChannel
-
finishConnect
void finishConnect()
Finish connect
-
read
void read()
Read from underlyingSelectableChannel
-
forceFlush
void forceFlush()
-
-