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 aChannelPromiseto thisChannelFlushPromiseNotifierwhich will be notified after the givenpendingDataSizewas reached.ChannelFlushPromiseNotifier.increaseWriteCounter(long delta) Increase the current write counter by the given deltaChannelFlushPromiseNotifier.notifyFlushFutures()Deprecated.ChannelFlushPromiseNotifier.notifyFlushFutures(Throwable cause) Deprecated.ChannelFlushPromiseNotifier.notifyFlushFutures(Throwable cause1, Throwable cause2) Deprecated.ChannelFlushPromiseNotifier.notifyPromises()Notify allChannelFutures that were registered withChannelFlushPromiseNotifier.add(ChannelPromise, int)and their pendingDatasize is smaller after the current writeCounter returned byChannelFlushPromiseNotifier.writeCounter().ChannelFlushPromiseNotifier.notifyPromises(Throwable cause) Notify allChannelFutures that were registered withChannelFlushPromiseNotifier.add(ChannelPromise, int)and their pendingDatasize isis smaller then the current writeCounter returned byChannelFlushPromiseNotifier.writeCounter().ChannelFlushPromiseNotifier.notifyPromises(Throwable cause1, Throwable cause2) Notify allChannelFutures that were registered withChannelFlushPromiseNotifier.add(ChannelPromise, int)and their pendingDatasize is smaller then the current writeCounter returned byChannelFlushPromiseNotifier.writeCounter()using the given cause1.
ChannelFlushPromiseNotifier.add(ChannelPromise, long)