Java.Util.Concurrent.ExecutorCompletionService Members

The members of Java.Util.Concurrent.ExecutorCompletionService are listed below.

See Also: Inherited members from Java.Lang.Object

Public Constructors

Creates an ExecutorCompletionService using the supplied executor for base task execution and a Java.Util.Concurrent.LinkedBlockingQueue as a completion queue.
Documentation for this section has not yet been entered.

Protected Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Public Methods

Poll() : IFuture
Retrieves and removes the Future representing the next completed task, or null if none are present.
Poll(long, TimeUnit) : IFuture
Retrieves and removes the Future representing the next completed task, waiting if necessary up to the specified wait time if none are yet present.
PollAsync() : System.Threading.Tasks.Task<IFuture>
Documentation for this section has not yet been entered.
PollAsync(long, TimeUnit) : System.Threading.Tasks.Task<IFuture>
Documentation for this section has not yet been entered.
Submit(ICallable) : IFuture
Documentation for this section has not yet been entered.
Submit(Java.Lang.IRunnable, Java.Lang.Object) : IFuture
Documentation for this section has not yet been entered.
Take() : IFuture
Retrieves and removes the Future representing the next completed task, waiting if none are yet present.
TakeAsync() : System.Threading.Tasks.Task<IFuture>
Documentation for this section has not yet been entered.