程序包 | 说明 |
---|---|
io.netty.channel |
The core channel API which is asynchronous and event-driven abstraction of
various transports such as a
NIO Channel.
|
限定符和类型 | 方法和说明 |
---|---|
ChannelFlushPromiseNotifier |
ChannelFlushPromiseNotifier.add(ChannelPromise promise,
int pendingDataSize)
已过时。
|
ChannelFlushPromiseNotifier |
ChannelFlushPromiseNotifier.add(ChannelPromise promise,
long pendingDataSize)
Add a
ChannelPromise to this ChannelFlushPromiseNotifier which will be notified after the given
pendingDataSize was reached. |
ChannelFlushPromiseNotifier |
ChannelFlushPromiseNotifier.increaseWriteCounter(long delta)
Increase the current write counter by the given delta
|
ChannelFlushPromiseNotifier |
ChannelFlushPromiseNotifier.notifyFlushFutures()
已过时。
use
notifyPromises() |
ChannelFlushPromiseNotifier |
ChannelFlushPromiseNotifier.notifyFlushFutures(java.lang.Throwable cause)
已过时。
|
ChannelFlushPromiseNotifier |
ChannelFlushPromiseNotifier.notifyFlushFutures(java.lang.Throwable cause1,
java.lang.Throwable cause2)
已过时。
|
ChannelFlushPromiseNotifier |
ChannelFlushPromiseNotifier.notifyPromises()
Notify all
ChannelFuture s that were registered with add(ChannelPromise, int) and
their pendingDatasize is smaller after the the current writeCounter returned by writeCounter() . |
ChannelFlushPromiseNotifier |
ChannelFlushPromiseNotifier.notifyPromises(java.lang.Throwable cause)
Notify all
ChannelFuture s that were registered with add(ChannelPromise, int) and
their pendingDatasize isis smaller then the current writeCounter returned by writeCounter() . |
ChannelFlushPromiseNotifier |
ChannelFlushPromiseNotifier.notifyPromises(java.lang.Throwable cause1,
java.lang.Throwable cause2)
Notify all
ChannelFuture s that were registered with add(ChannelPromise, int) and
their pendingDatasize is smaller then the current writeCounter returned by writeCounter() using
the given cause1. |