Język

CompletableFuture.ApplyToEither(ICompletionStage, IFunction) Method

Definition

Returns a new CompletionStage that, when either this or the other given stage complete normally, is executed with the corresponding result as argument to the supplied function.

[Android.Runtime.Register("applyToEither", "(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;", "GetApplyToEither_Ljava_util_concurrent_CompletionStage_Ljava_util_function_Function_Handler", ApiSince=24)]
[Java.Interop.JavaTypeParameters(new System.String[] { "U" })]
public virtual Java.Util.Concurrent.ICompletionStage? ApplyToEither(Java.Util.Concurrent.ICompletionStage? other, Java.Util.Functions.IFunction? fn);
[<Android.Runtime.Register("applyToEither", "(Ljava/util/concurrent/CompletionStage;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture;", "GetApplyToEither_Ljava_util_concurrent_CompletionStage_Ljava_util_function_Function_Handler", ApiSince=24)>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "U" })>]
abstract member ApplyToEither : Java.Util.Concurrent.ICompletionStage * Java.Util.Functions.IFunction -> Java.Util.Concurrent.ICompletionStage
override this.ApplyToEither : Java.Util.Concurrent.ICompletionStage * Java.Util.Functions.IFunction -> Java.Util.Concurrent.ICompletionStage

Parameters

other
ICompletionStage

the other CompletionStage

fn
IFunction

the function to use to compute the value of the returned CompletionStage

Returns

the new CompletionStage

Implements

Attributes

Remarks

Returns a new CompletionStage that, when either this or the other given stage complete normally, is executed with the corresponding result as argument to the supplied function. See the CompletionStage documentation for rules covering exceptional completion.

Java reference for java.util.concurrent.CompletableFuture.applyToEither.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to