Share via


CountedCompleter.PropagateCompletion Method

Definition

Equivalent to #tryComplete but does not invoke #onCompletion(CountedCompleter) along the completion path: If the pending count is nonzero, decrements the count; otherwise, similarly tries to complete this task's completer, if one exists, else marks this task as complete.

[Android.Runtime.Register("propagateCompletion", "()V", "", ApiSince=24)]
public void PropagateCompletion ();
[<Android.Runtime.Register("propagateCompletion", "()V", "", ApiSince=24)>]
member this.PropagateCompletion : unit -> unit
Attributes

Remarks

Equivalent to #tryComplete but does not invoke #onCompletion(CountedCompleter) along the completion path: If the pending count is nonzero, decrements the count; otherwise, similarly tries to complete this task's completer, if one exists, else marks this task as complete. This method may be useful in cases where onCompletion should not, or need not, be invoked for each completer in a computation.

Java documentation for java.util.concurrent.CountedCompleter.propagateCompletion().

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