Share via


ForkJoinTask.QuietlyJoinUninterruptibly(Int64, TimeUnit) Method

Definition

Tries to join this task, returning true if it completed (possibly exceptionally) before the given timeout.

[Android.Runtime.Register("quietlyJoinUninterruptibly", "(JLjava/util/concurrent/TimeUnit;)Z", "", ApiSince=36)]
public bool QuietlyJoinUninterruptibly(long timeout, Java.Util.Concurrent.TimeUnit? unit);
[<Android.Runtime.Register("quietlyJoinUninterruptibly", "(JLjava/util/concurrent/TimeUnit;)Z", "", ApiSince=36)>]
member this.QuietlyJoinUninterruptibly : int64 * Java.Util.Concurrent.TimeUnit -> bool

Parameters

timeout
Int64

the maximum time to wait

unit
TimeUnit

the time unit of the timeout argument

Returns

true if this task completed

Attributes

Remarks

Tries to join this task, returning true if it completed (possibly exceptionally) before the given timeout.

Added in 19.

Java documentation for java.util.concurrent.ForkJoinTask.quietlyJoinUninterruptibly(long, java.util.concurrent.TimeUnit).

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