Uses of Class
io.netty.channel.ChannelFlushPromiseNotifier
Packages that use ChannelFlushPromiseNotifier
Package
Description
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
-
Uses of ChannelFlushPromiseNotifier in io.netty.channel
Methods in io.netty.channel that return ChannelFlushPromiseNotifierModifier and TypeMethodDescriptionChannelFlushPromiseNotifier.add
(ChannelPromise promise, int pendingDataSize) Deprecated.ChannelFlushPromiseNotifier.add
(ChannelPromise promise, long pendingDataSize) Add aChannelPromise
to thisChannelFlushPromiseNotifier
which will be notified after the givenpendingDataSize
was reached.ChannelFlushPromiseNotifier.increaseWriteCounter
(long delta) Increase the current write counter by the given deltaChannelFlushPromiseNotifier.notifyFlushFutures()
Deprecated.usenotifyPromises()
ChannelFlushPromiseNotifier.notifyFlushFutures
(Throwable cause) Deprecated.ChannelFlushPromiseNotifier.notifyFlushFutures
(Throwable cause1, Throwable cause2) Deprecated.ChannelFlushPromiseNotifier.notifyPromises()
Notify allChannelFuture
s that were registered withadd(ChannelPromise, int)
and their pendingDatasize is smaller after the current writeCounter returned bywriteCounter()
.ChannelFlushPromiseNotifier.notifyPromises
(Throwable cause) Notify allChannelFuture
s that were registered withadd(ChannelPromise, int)
and their pendingDatasize isis smaller then the current writeCounter returned bywriteCounter()
.ChannelFlushPromiseNotifier.notifyPromises
(Throwable cause1, Throwable cause2) Notify allChannelFuture
s that were registered withadd(ChannelPromise, int)
and their pendingDatasize is smaller then the current writeCounter returned bywriteCounter()
using the given cause1.
add(ChannelPromise, long)