| io.netty.channel.ChannelFlushPromiseNotifier.add(ChannelPromise, int)
|
| io.netty.bootstrap.AbstractBootstrap.channelFactory(ChannelFactory extends C>)
|
io.netty.channel.group.ChannelGroup.deregister()
This method will be removed in the next major feature release.
Deregister all Channels in this group from their EventLoop.
Please note that this operation is asynchronous as Channel.deregister() is.
|
| io.netty.channel.group.ChannelGroup.deregister(ChannelMatcher)
|
| io.netty.channel.group.ChannelGroup.flushAndWrite(Object)
|
| io.netty.channel.group.ChannelGroup.flushAndWrite(Object, ChannelMatcher)
|
| io.netty.channel.DefaultChannelConfig.getMaxMessagesPerRead() |
io.netty.channel.ChannelConfig.getMaxMessagesPerRead()
Use MaxMessagesRecvByteBufAllocator
Returns the maximum number of messages to read per read loop.
a channelRead() event.
If this value is greater than 1, an event loop might attempt to read multiple times to procure multiple messages.
|
io.netty.channel.ChannelConfig.isAutoClose()
From version 5.0, Channel will not be closed on write failure.
Returns true if and only if the Channel will be closed automatically and immediately on
write failure. The default is false.
|
| io.netty.channel.embedded.EmbeddedChannel.lastInboundBuffer()
|
| io.netty.channel.embedded.EmbeddedChannel.lastOutboundBuffer()
|
| io.netty.channel.ChannelFlushPromiseNotifier.notifyFlushFutures()
|
| io.netty.channel.ChannelFlushPromiseNotifier.notifyFlushFutures(Throwable)
|
| io.netty.channel.ChannelFlushPromiseNotifier.notifyFlushFutures(Throwable, Throwable)
|
| io.netty.channel.ChannelOutboundBuffer.recycle() |
io.netty.channel.ChannelConfig.setAutoClose(boolean)
From version 5.0, Channel will not be closed on write failure.
Sets whether the Channel should be closed automatically and immediately on write faillure.
The default is false.
|
| io.netty.channel.DefaultChannelConfig.setMaxMessagesPerRead(int) |
io.netty.channel.ChannelConfig.setMaxMessagesPerRead(int)
Use MaxMessagesRecvByteBufAllocator
Sets the maximum number of messages to read per read loop.
If this value is greater than 1, an event loop might attempt to read multiple times to procure multiple messages.
|
| io.netty.channel.socket.oio.OioSocketChannelConfig.setMaxMessagesPerRead(int) |
| io.netty.channel.socket.oio.OioServerSocketChannelConfig.setMaxMessagesPerRead(int) |
| io.netty.channel.socket.oio.DefaultOioServerSocketChannelConfig.setMaxMessagesPerRead(int) |
| io.netty.channel.socket.oio.DefaultOioSocketChannelConfig.setMaxMessagesPerRead(int) |
| io.netty.channel.socket.SocketChannelConfig.setMaxMessagesPerRead(int) |
| io.netty.channel.socket.DatagramChannelConfig.setMaxMessagesPerRead(int) |
| io.netty.channel.socket.DefaultSocketChannelConfig.setMaxMessagesPerRead(int) |
| io.netty.channel.socket.DefaultDatagramChannelConfig.setMaxMessagesPerRead(int) |
| io.netty.channel.socket.DefaultServerSocketChannelConfig.setMaxMessagesPerRead(int) |
| io.netty.channel.socket.ServerSocketChannelConfig.setMaxMessagesPerRead(int) |
| io.netty.channel.ThreadPerChannelEventLoopGroup.shutdown() |