ForkJoinTask.QuietlyComplete Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Completes this task normally without setting a value.
[Android.Runtime.Register("quietlyComplete", "()V", "", ApiSince=24)]
public void QuietlyComplete ();
[<Android.Runtime.Register("quietlyComplete", "()V", "", ApiSince=24)>]
member this.QuietlyComplete : unit -> unit
- Attributes
Remarks
Completes this task normally without setting a value. The most recent value established by #setRawResult
(or null
by default) will be returned as the result of subsequent invocations of join
and related operations.
Added in 1.8.
Java documentation for java.util.concurrent.ForkJoinTask.quietlyComplete()
.
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.