Uses of Interface
io.netty.channel.ChannelFutureListener
-
Packages that use ChannelFutureListener Package Description io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of ChannelFutureListener in io.netty.channel
Classes in io.netty.channel that implement ChannelFutureListener Modifier and Type Class Description class
ChannelPromiseAggregator
Deprecated.UsePromiseCombiner
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.class
ChannelPromiseNotifier
Deprecated.usePromiseNotifier
.class
DelegatingChannelPromiseNotifier
Fields in io.netty.channel declared as ChannelFutureListener Modifier and Type Field Description static ChannelFutureListener
ChannelFutureListener. CLOSE
AChannelFutureListener
that closes theChannel
which is associated with the specifiedChannelFuture
.static ChannelFutureListener
ChannelFutureListener. CLOSE_ON_FAILURE
AChannelFutureListener
that closes theChannel
when the operation ended up with a failure or cancellation rather than a success.static ChannelFutureListener
ChannelFutureListener. FIRE_EXCEPTION_ON_FAILURE
Methods in io.netty.channel with parameters of type ChannelFutureListener Modifier and Type Method Description void
AbstractCoalescingBufferQueue. add(ByteBuf buf, ChannelFutureListener listener)
Add a buffer to the end of the queue and associate a listener with it that should be completed when all the buffers bytes have been consumed from the queue and written. -
Uses of ChannelFutureListener in io.netty.handler.codec.http2
Classes in io.netty.handler.codec.http2 that implement ChannelFutureListener Modifier and Type Class Description class
DefaultHttp2ConnectionEncoder.FlowControlledBase
Common base type for payloads to deliver via flow-control.
-