Uses of Interface
org.infinispan.util.concurrent.AggregateCompletionStage
-
Packages that use AggregateCompletionStage Package Description org.infinispan.notifications.impl org.infinispan.util.concurrent 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 AggregateCompletionStage Modifier and Type Method Description protected 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 AggregateCompletionStage Modifier and Type Method Description protected 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 AggregateCompletionStage Modifier and Type Method Description static 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<R>AggregateCompletionStage. dependsOn(CompletionStage<?> stage)Adds another CompletionStage for this stage to be reliant upon.
-