The members of Java.Util.Concurrent.IExecutorService are listed below.
Public Properties
[read-only] | IsShutdown | bool. Returns true if this executor has been shut down. |
[read-only] | IsTerminated | bool. Returns true if all tasks have completed following shut down. |
Public Methods
| AwaitTermination(long, TimeUnit) : boolBlocks 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) : IListDocumentation for this section has not yet been entered. |
| InvokeAll(ICollection, long, TimeUnit) : IListDocumentation for this section has not yet been entered. |
| InvokeAny(ICollection) : Java.Lang.ObjectDocumentation for this section has not yet been entered. |
| InvokeAny(ICollection, long, TimeUnit) : Java.Lang.ObjectDocumentation 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) : IFutureSubmits a Runnable task for execution and returns a Future
representing that task. |
| Submit(ICallable) : IFutureDocumentation for this section has not yet been entered. |
| Submit(Java.Lang.IRunnable, Java.Lang.Object) : IFutureDocumentation for this section has not yet been entered. |