ThreadPoolExecutor.Queue Property

Definition

Returns the task queue used by this executor.

public virtual Java.Util.Concurrent.IBlockingQueue? Queue { [Android.Runtime.Register("getQueue", "()Ljava/util/concurrent/BlockingQueue;", "GetGetQueueHandler")] get; }
[<get: Android.Runtime.Register("getQueue", "()Ljava/util/concurrent/BlockingQueue;", "GetGetQueueHandler")>]
member this.Queue : Java.Util.Concurrent.IBlockingQueue

Property Value

the task queue

Attributes

Remarks

Returns the task queue used by this executor. Access to the task queue is intended primarily for debugging and monitoring. This queue may be in active use. Retrieving the task queue does not prevent queued tasks from executing.

Java documentation for java.util.concurrent.ThreadPoolExecutor.getQueue().

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