Uses of Interface
org.infinispan.util.concurrent.AggregateCompletionStage
Packages that use AggregateCompletionStage
Package
Description
Thread-safe containers and other concurrency-related utilities, designed to supplement JDK concurrency utilities
and containers.
-
Uses of AggregateCompletionStage in org.infinispan.notifications.impl
Methods in org.infinispan.notifications.impl that return AggregateCompletionStageModifier and TypeMethodDescriptionprotected static AggregateCompletionStage<Void>
AbstractListenerImpl.composeStageIfNeeded
(AggregateCompletionStage<Void> aggregateCompletionStage, CompletionStage<Void> stage) If the given stage is null or normally completed returns the provided aggregateCompletionStage as is.Methods in org.infinispan.notifications.impl with parameters of type AggregateCompletionStageModifier and TypeMethodDescriptionprotected static AggregateCompletionStage<Void>
AbstractListenerImpl.composeStageIfNeeded
(AggregateCompletionStage<Void> aggregateCompletionStage, CompletionStage<Void> stage) If the given stage is null or normally completed returns the provided aggregateCompletionStage as is. -
Uses of AggregateCompletionStage in org.infinispan.util.concurrent
Methods in org.infinispan.util.concurrent that return AggregateCompletionStageModifier and TypeMethodDescriptionstatic AggregateCompletionStage<Void>
CompletionStages.aggregateCompletionStage()
Returns a CompletionStage that also can be composed of many other CompletionStages.static <R> AggregateCompletionStage<R>
CompletionStages.aggregateCompletionStage
(R valueToReturn) Same asCompletionStages.aggregateCompletionStage()
except that when this stage completes normally it will return the value provided.AggregateCompletionStage.dependsOn
(CompletionStage<?> stage) Adds another CompletionStage for this stage to be reliant upon.static AggregateCompletionStage<Boolean>
CompletionStages.orBooleanAggregateCompletionStage()