| Interface and Description |
|---|
| io.netty.bootstrap.ChannelFactory
Use
ChannelFactory instead. |
| io.netty.channel.RecvByteBufAllocator.Handle |
| Class and Description |
|---|
| io.netty.channel.ChannelPromiseAggregator
Use
PromiseCombiner
Class which is used to consolidate multiple channel futures into one, by
listening to the individual futures and producing an aggregated result
(success/failure) when all futures have completed. |
| io.netty.channel.local.LocalEventLoopGroup
Use
DefaultEventLoopGroup instead. |
| Field and Description |
|---|
| io.netty.channel.ChannelOption.AUTO_CLOSE
Auto close will be removed in a future release.
If
true then the Channel is closed automatically and immediately on write failure.
The default value is true. |
| io.netty.channel.ChannelOption.DATAGRAM_CHANNEL_ACTIVE_ON_REGISTRATION |
| io.netty.channel.AdaptiveRecvByteBufAllocator.DEFAULT
There is state for
DefaultMaxMessagesRecvByteBufAllocator.maxMessagesPerRead() which is typically based upon channel type. |
| io.netty.channel.ChannelOption.MAX_MESSAGES_PER_READ |
| io.netty.channel.ChannelOption.WRITE_BUFFER_HIGH_WATER_MARK |
| io.netty.channel.ChannelOption.WRITE_BUFFER_LOW_WATER_MARK |
| Constructor and Description |
|---|
| io.netty.channel.ChannelOption(String) |
| io.netty.channel.socket.oio.DefaultOioServerSocketChannelConfig(ServerSocketChannel, ServerSocket) |
| io.netty.channel.socket.oio.DefaultOioSocketChannelConfig(SocketChannel, Socket) |
Copyright © 2008–2017 The Netty Project. All rights reserved.