Java.Util.Concurrent.IExecutorService Members

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

Public Properties

[read-only]
IsShutdownbool. Returns true if this executor has been shut down.
[read-only]
IsTerminatedbool. Returns true if all tasks have completed following shut down.

Public Methods

AwaitTermination(long, TimeUnit) : bool
Blocks until all tasks have completed execution after a shutdown request, or the timeout occurs, or the current thread is interrupted, whichever happens first.
InvokeAll(ICollection) : IList
Documentation for this section has not yet been entered.
InvokeAll(ICollection, long, TimeUnit) : IList
Documentation for this section has not yet been entered.
InvokeAny(ICollection) : Java.Lang.Object
Documentation for this section has not yet been entered.
InvokeAny(ICollection, long, TimeUnit) : Java.Lang.Object
Documentation for this section has not yet been entered.
Shutdown()
Initiates an orderly shutdown in which previously submitted tasks are executed, but no new tasks will be accepted.
ShutdownNow() : IList<Java.Lang.IRunnable>
Attempts to stop all actively executing tasks, halts the processing of waiting tasks, and returns a list of the tasks that were awaiting execution.
Submit(Java.Lang.IRunnable) : IFuture
Submits a Runnable task for execution and returns a Future representing that task.
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.