Netty 4 中 DefualtChannelFuture 的替代品是什么

What is the replacement of DefualtChannelFuture in Netty 4

在 Netty 3 中有 DefualtChannelFuture class.

用于创建ChannelFuture的实例。 Netty 4 中的替代品是什么?

如果您需要创建自己的 ChannelPromise 实例,请调用 Channel.newPromise()ChannelHandlerContext.newPromise()ChannelPromiseChannelFuture.

的子类型