Uses of Class
io.netty.channel.ChannelFlushPromiseNotifier
-
Packages that use ChannelFlushPromiseNotifier Package Description io.netty.channel 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 ChannelFlushPromiseNotifier Modifier and Type Method Description ChannelFlushPromiseNotifier
ChannelFlushPromiseNotifier. add(ChannelPromise promise, int pendingDataSize)
Deprecated.ChannelFlushPromiseNotifier
ChannelFlushPromiseNotifier. add(ChannelPromise promise, long pendingDataSize)
Add aChannelPromise
to thisChannelFlushPromiseNotifier
which will be notified after the givenpendingDataSize
was reached.ChannelFlushPromiseNotifier
ChannelFlushPromiseNotifier. increaseWriteCounter(long delta)
Increase the current write counter by the given deltaChannelFlushPromiseNotifier
ChannelFlushPromiseNotifier. notifyFlushFutures()
Deprecated.usenotifyPromises()
ChannelFlushPromiseNotifier
ChannelFlushPromiseNotifier. notifyFlushFutures(java.lang.Throwable cause)
Deprecated.ChannelFlushPromiseNotifier
ChannelFlushPromiseNotifier. notifyFlushFutures(java.lang.Throwable cause1, java.lang.Throwable cause2)
Deprecated.ChannelFlushPromiseNotifier
ChannelFlushPromiseNotifier. notifyPromises()
Notify allChannelFuture
s that were registered withadd(ChannelPromise, int)
and their pendingDatasize is smaller after the current writeCounter returned bywriteCounter()
.ChannelFlushPromiseNotifier
ChannelFlushPromiseNotifier. notifyPromises(java.lang.Throwable cause)
Notify allChannelFuture
s that were registered withadd(ChannelPromise, int)
and their pendingDatasize isis smaller then the current writeCounter returned bywriteCounter()
.ChannelFlushPromiseNotifier
ChannelFlushPromiseNotifier. notifyPromises(java.lang.Throwable cause1, java.lang.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.
-