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.channel.embedded A virtualChannel
that helps wrapping a series of handlers to unit test the handlers or use them in non-I/O context.io.netty.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.channel.group A channel registry which helps a user maintain the list of openChannel
s and perform bulk operations on them.io.netty.handler.codec 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.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol.io.netty.handler.proxy Adds support for client connections via proxy protocols such as SOCKS and HTTP CONNECT tunnelingio.netty.handler.timeout Adds support for read and write timeout and idle connection notification using aTimer
. -
-
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
private ChannelFutureListener
VoidChannelPromise. fireExceptionListener
Methods in io.netty.channel that return ChannelFutureListener Modifier and Type Method Description private static ChannelFutureListener
AbstractCoalescingBufferQueue. toChannelFutureListener(ChannelPromise promise)
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.private void
AbstractCoalescingBufferQueue. addFirst(ByteBuf buf, ChannelFutureListener listener)
-
Uses of ChannelFutureListener in io.netty.channel.embedded
Fields in io.netty.channel.embedded declared as ChannelFutureListener Modifier and Type Field Description private ChannelFutureListener
EmbeddedChannel. recordExceptionListener
-
Uses of ChannelFutureListener in io.netty.channel.epoll
Classes in io.netty.channel.epoll that implement ChannelFutureListener Modifier and Type Class Description private class
AbstractEpollStreamChannel.SpliceInChannelTask
-
Uses of ChannelFutureListener in io.netty.channel.group
Fields in io.netty.channel.group declared as ChannelFutureListener Modifier and Type Field Description private ChannelFutureListener
DefaultChannelGroupFuture. childListener
private ChannelFutureListener
DefaultChannelGroup. remover
-
Uses of ChannelFutureListener in io.netty.handler.codec
Fields in io.netty.handler.codec declared as ChannelFutureListener Modifier and Type Field Description private ChannelFutureListener
MessageAggregator. continueResponseWriteListener
-
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.private class
DefaultHttp2ConnectionEncoder.FlowControlledData
Wrap a DATA frame so it can be written subject to flow-control.private class
DefaultHttp2ConnectionEncoder.FlowControlledHeaders
Wrap headers so they can be written subject to flow-control.private static class
Http2ConnectionHandler.ClosingChannelFutureListener
Closes the channel when the future completes.Fields in io.netty.handler.codec.http2 declared as ChannelFutureListener Modifier and Type Field Description (package private) static ChannelFutureListener
Http2MultiplexHandler. CHILD_CHANNEL_REGISTRATION_LISTENER
private ChannelFutureListener
Http2ConnectionHandler. closeListener
private ChannelFutureListener
Http2ControlFrameLimitEncoder. outstandingControlFramesListener
private ChannelFutureListener
AbstractHttp2StreamChannel. windowUpdateFrameWriteListener
Methods in io.netty.handler.codec.http2 that return ChannelFutureListener Modifier and Type Method Description private ChannelFutureListener
Http2ConnectionHandler. newClosingChannelFutureListener(ChannelHandlerContext ctx, ChannelPromise promise)
-
Uses of ChannelFutureListener in io.netty.handler.codec.spdy
Classes in io.netty.handler.codec.spdy that implement ChannelFutureListener Modifier and Type Class Description private static class
SpdySessionHandler.ClosingChannelFutureListener
Fields in io.netty.handler.codec.spdy declared as ChannelFutureListener Modifier and Type Field Description private ChannelFutureListener
SpdySessionHandler. closeSessionFutureListener
-
Uses of ChannelFutureListener in io.netty.handler.proxy
Fields in io.netty.handler.proxy declared as ChannelFutureListener Modifier and Type Field Description private ChannelFutureListener
ProxyHandler. writeListener
-
Uses of ChannelFutureListener in io.netty.handler.timeout
Classes in io.netty.handler.timeout that implement ChannelFutureListener Modifier and Type Class Description private class
WriteTimeoutHandler.WriteTimeoutTask
Fields in io.netty.handler.timeout declared as ChannelFutureListener Modifier and Type Field Description private ChannelFutureListener
IdleStateHandler. writeListener
-