Uses of Class
io.netty.util.concurrent.PromiseAggregator
-
Packages that use PromiseAggregator 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.util.concurrent Utility classes for concurrent / async tasks. -
-
Uses of PromiseAggregator in io.netty.channel
Subclasses of PromiseAggregator in io.netty.channel 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. -
Uses of PromiseAggregator in io.netty.util.concurrent
Methods in io.netty.util.concurrent that return PromiseAggregator Modifier and Type Method Description PromiseAggregator<V,F>
PromiseAggregator. add(Promise<V>... promises)
Deprecated.Add the givenPromise
s to the aggregator.
-