Uses of Interface
io.netty.channel.ChannelFutureListener
Packages that use ChannelFutureListener
Package
Description
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
A virtual
Channel that helps wrapping a series of handlers to
unit test the handlers or use them in non-I/O context.Optimized transport for linux which uses EPOLL Edge-Triggered Mode
for maximal performance.
A channel registry which helps a user maintain the list of open
Channels and perform bulk operations on them.Extensible decoder and its common implementations which deal with the
packet fragmentation and reassembly issue found in a stream-based transport
such as TCP/IP.
Handlers for sending and receiving HTTP/2 frames.
Encoder, decoder, session handler and their related message types for the SPDY protocol.
Adds support for client connections via proxy protocols such as
SOCKS and
HTTP CONNECT tunneling
Adds support for read and write timeout and idle connection notification
using a
Timer.-
Uses of ChannelFutureListener in io.netty.channel
Classes in io.netty.channel that implement ChannelFutureListenerModifier and TypeClassDescriptionfinal classDeprecated.final classDeprecated.usePromiseNotifier.final classFields in io.netty.channel declared as ChannelFutureListenerModifier and TypeFieldDescriptionstatic final ChannelFutureListenerChannelFutureListener.CLOSEAChannelFutureListenerthat closes theChannelwhich is associated with the specifiedChannelFuture.static final ChannelFutureListenerChannelFutureListener.CLOSE_ON_FAILUREAChannelFutureListenerthat closes theChannelwhen the operation ended up with a failure or cancellation rather than a success.static final ChannelFutureListenerChannelFutureListener.FIRE_EXCEPTION_ON_FAILUREprivate final ChannelFutureListenerVoidChannelPromise.fireExceptionListenerMethods in io.netty.channel that return ChannelFutureListenerModifier and TypeMethodDescriptionprivate static ChannelFutureListenerAbstractCoalescingBufferQueue.toChannelFutureListener(ChannelPromise promise) Methods in io.netty.channel with parameters of type ChannelFutureListenerModifier and TypeMethodDescriptionfinal voidAbstractCoalescingBufferQueue.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.private voidAbstractCoalescingBufferQueue.addFirst(ByteBuf buf, ChannelFutureListener listener) -
Uses of ChannelFutureListener in io.netty.channel.embedded
Fields in io.netty.channel.embedded declared as ChannelFutureListenerModifier and TypeFieldDescriptionprivate final ChannelFutureListenerEmbeddedChannel.recordExceptionListener -
Uses of ChannelFutureListener in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement ChannelFutureListenerModifier and TypeClassDescriptionprivate final class -
Uses of ChannelFutureListener in io.netty.channel.group
Fields in io.netty.channel.group declared as ChannelFutureListenerModifier and TypeFieldDescriptionprivate final ChannelFutureListenerDefaultChannelGroupFuture.childListenerprivate final ChannelFutureListenerDefaultChannelGroup.remover -
Uses of ChannelFutureListener in io.netty.handler.codec
Fields in io.netty.handler.codec declared as ChannelFutureListenerModifier and TypeFieldDescriptionprivate ChannelFutureListenerMessageAggregator.continueResponseWriteListener -
Uses of ChannelFutureListener in io.netty.handler.codec.http2
Classes in io.netty.handler.codec.http2 that implement ChannelFutureListenerModifier and TypeClassDescriptionclassCommon base type for payloads to deliver via flow-control.private final classWrap a DATA frame so it can be written subject to flow-control.private final classWrap headers so they can be written subject to flow-control.private static final classCloses the channel when the future completes.Fields in io.netty.handler.codec.http2 declared as ChannelFutureListenerModifier and TypeFieldDescription(package private) static final ChannelFutureListenerHttp2MultiplexHandler.CHILD_CHANNEL_REGISTRATION_LISTENERprivate ChannelFutureListenerHttp2ConnectionHandler.closeListenerprivate final ChannelFutureListenerHttp2ControlFrameLimitEncoder.outstandingControlFramesListenerprivate final ChannelFutureListenerAbstractHttp2StreamChannel.windowUpdateFrameWriteListenerMethods in io.netty.handler.codec.http2 that return ChannelFutureListenerModifier and TypeMethodDescriptionprivate ChannelFutureListenerHttp2ConnectionHandler.newClosingChannelFutureListener(ChannelHandlerContext ctx, ChannelPromise promise) -
Uses of ChannelFutureListener in io.netty.handler.codec.spdy
Classes in io.netty.handler.codec.spdy that implement ChannelFutureListenerModifier and TypeClassDescriptionprivate static final classFields in io.netty.handler.codec.spdy declared as ChannelFutureListenerModifier and TypeFieldDescriptionprivate ChannelFutureListenerSpdySessionHandler.closeSessionFutureListener -
Uses of ChannelFutureListener in io.netty.handler.proxy
Fields in io.netty.handler.proxy declared as ChannelFutureListener -
Uses of ChannelFutureListener in io.netty.handler.timeout
Classes in io.netty.handler.timeout that implement ChannelFutureListenerFields in io.netty.handler.timeout declared as ChannelFutureListenerModifier and TypeFieldDescriptionprivate final ChannelFutureListenerIdleStateHandler.writeListener
PromiseCombinerClass 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.