Netty 4 中 DefualtChannelFuture 的替代品是什么
What is the replacement of DefualtChannelFuture in Netty 4
在 Netty 3 中有 DefualtChannelFuture class.
用于创建ChannelFuture
的实例。 Netty 4 中的替代品是什么?
如果您需要创建自己的 ChannelPromise
实例,请调用 Channel.newPromise()
或 ChannelHandlerContext.newPromise()
。 ChannelPromise
是 ChannelFuture
.
的子类型
在 Netty 3 中有 DefualtChannelFuture class.
用于创建ChannelFuture
的实例。 Netty 4 中的替代品是什么?
如果您需要创建自己的 ChannelPromise
实例,请调用 Channel.newPromise()
或 ChannelHandlerContext.newPromise()
。 ChannelPromise
是 ChannelFuture
.