Package org.infinispan.util.concurrent
Class CompletionStages
- java.lang.Object
-
- org.infinispan.util.concurrent.CompletionStages
-
public class CompletionStages extends java.lang.ObjectUtility methods for handlingCompletionStageinstances.- Since:
- 10.0
- Author:
- wburns
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AggregateCompletionStage<java.lang.Void>aggregateCompletionStage()Returns a CompletionStage that also can be composed of many other CompletionStages.static <R> AggregateCompletionStage<R>aggregateCompletionStage(R valueToReturn)Same asaggregateCompletionStage()except that when this stage completes normally it will return the value provided.static java.util.concurrent.CompletionStage<java.lang.Void>allOf(java.util.concurrent.CompletionStage<?>... stages)Returns a CompletionStage that completes when all of the provided stages complete, either normally or via exception.static java.util.concurrent.CompletionStage<java.lang.Void>allOf(java.util.concurrent.CompletionStage<java.lang.Void> first, java.util.concurrent.CompletionStage<java.lang.Void> second)Returns a CompletableStage that completes when both of the provides CompletionStages complete.static booleanisCompletedSuccessfully(java.util.concurrent.CompletionStage<?> stage)Returns if the providedCompletionStagehas already completed normally, that is not due to an exception.static <R> Rjoin(java.util.concurrent.CompletionStage<R> stage)Returns the result value when complete, or throws an (unchecked) exception if completed exceptionally.
-
-
-
Method Detail
-
aggregateCompletionStage
public static AggregateCompletionStage<java.lang.Void> aggregateCompletionStage()
Returns a CompletionStage that also can be composed of many other CompletionStages. A stage can compose another stage in it by invoking theAggregateCompletionStage.dependsOn(CompletionStage)method passing in the CompletionStage. After all stages this composition stage depend upon have been added, theAggregateCompletionStage.freeze()should be invoked so that the AggregateCompletionStage can finally complete when all of the stages it depends upon complete.If any stage this depends upon fails the returned stage will contain the Throwable from one of the stages.
- Returns:
- composed completion stage
-
aggregateCompletionStage
public static <R> AggregateCompletionStage<R> aggregateCompletionStage(R valueToReturn)
Same asaggregateCompletionStage()except that when this stage completes normally it will return the value provided.- Type Parameters:
R- the type of the value- Parameters:
valueToReturn- value to return to future stage compositions- Returns:
- composed completion stage that returns the value upon normal completion
-
isCompletedSuccessfully
public static boolean isCompletedSuccessfully(java.util.concurrent.CompletionStage<?> stage)
Returns if the providedCompletionStagehas already completed normally, that is not due to an exception.- Parameters:
stage- stage to check- Returns:
- if the stage is completed normally
-
join
public static <R> R join(java.util.concurrent.CompletionStage<R> stage)
Returns the result value when complete, or throws an (unchecked) exception if completed exceptionally. To better conform with the use of common functional forms, if a computation involved in the completion of this CompletionStage threw an exception, this method throws an (unchecked) CompletionException with the underlying exception as its cause.- Type Parameters:
R- the type in the stage- Parameters:
stage- stage to wait on- Returns:
- the result value
- Throws:
java.util.concurrent.CompletionException- if this stage completed exceptionally or a completion computation threw an exception
-
allOf
public static java.util.concurrent.CompletionStage<java.lang.Void> allOf(java.util.concurrent.CompletionStage<java.lang.Void> first, java.util.concurrent.CompletionStage<java.lang.Void> second)Returns a CompletableStage that completes when both of the provides CompletionStages complete. This method may choose to return either of the argument if the other is complete or a new instance completely.- Parameters:
first- the first CompletionStagesecond- the second CompletionStage- Returns:
- a CompletionStage that is complete when both of the given CompletionStages complete
-
allOf
public static java.util.concurrent.CompletionStage<java.lang.Void> allOf(java.util.concurrent.CompletionStage<?>... stages)
Returns a CompletionStage that completes when all of the provided stages complete, either normally or via exception. If one or more states complete exceptionally the returned CompletionStage will complete with the exception of one of these. If no CompletionStages are provided, returns a CompletionStage completed with the value null.- Parameters:
stages- the CompletionStages- Returns:
- a CompletionStage that is completed when all of the given CompletionStages complete
-
-