|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object edu.emory.mathcs.backport.java.util.concurrent.AbstractExecutorService
Provides default implementations of ExecutorService
execution methods. This class implements the submit,
invokeAny and invokeAll methods using a
RunnableFuture
returned by newTaskFor, which defaults
to the FutureTask
class provided in this package. For example,
the implementation of submit(Runnable) creates an
associated RunnableFuture that is executed and
returned. Subclasses may override the newTaskFor methods
to return RunnableFuture implementations other than
FutureTask.
Extension example. Here is a sketch of a class
that customizes ThreadPoolExecutor
to use
a CustomTask class instead of the default FutureTask:
public class CustomThreadPoolExecutor extends ThreadPoolExecutor { static class CustomTask<V> implements RunnableFuture<V> {...} protected <V> RunnableFuture<V> newTaskFor(Callable<V> c) { return new CustomTask<V>(c); } protected <V> RunnableFuture<V> newTaskFor(Runnable r, V v) { return new CustomTask<V>(r, v); } // ... add constructors, etc. }
Constructor Summary | |
AbstractExecutorService()
|
Method Summary | |
java.util.List |
invokeAll(java.util.Collection tasks)
Executes the given tasks, returning a list of Futures holding their status and results when all complete. |
java.util.List |
invokeAll(java.util.Collection tasks,
long timeout,
TimeUnit unit)
Executes the given tasks, returning a list of Futures holding their status and results when all complete or the timeout expires, whichever happens first. |
java.lang.Object |
invokeAny(java.util.Collection tasks)
Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do. |
java.lang.Object |
invokeAny(java.util.Collection tasks,
long timeout,
TimeUnit unit)
Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do before the given timeout elapses. |
protected RunnableFuture |
newTaskFor(Callable callable)
Returns a RunnableFuture for the given callable task. |
protected RunnableFuture |
newTaskFor(java.lang.Runnable runnable,
java.lang.Object value)
Returns a RunnableFuture for the given runnable and default value. |
Future |
submit(Callable task)
Submits a value-returning task for execution and returns a Future representing the pending results of the task. |
Future |
submit(java.lang.Runnable task)
Submits a Runnable task for execution and returns a Future representing that task. |
Future |
submit(java.lang.Runnable task,
java.lang.Object result)
Submits a Runnable task for execution and returns a Future representing that task. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface edu.emory.mathcs.backport.java.util.concurrent.ExecutorService |
awaitTermination, isShutdown, isTerminated, shutdown, shutdownNow |
Methods inherited from interface edu.emory.mathcs.backport.java.util.concurrent.Executor |
execute |
Constructor Detail |
public AbstractExecutorService()
Method Detail |
protected RunnableFuture newTaskFor(java.lang.Runnable runnable, java.lang.Object value)
runnable
- the runnable task being wrappedvalue
- the default value for the returned future
protected RunnableFuture newTaskFor(Callable callable)
callable
- the callable task being wrapped
public Future submit(java.lang.Runnable task)
ExecutorService
submit
in interface ExecutorService
task
- the task to submit
RejectedExecutionException
- if the task cannot be
scheduled for execution
java.lang.NullPointerException
- if the task is nullpublic Future submit(java.lang.Runnable task, java.lang.Object result)
ExecutorService
submit
in interface ExecutorService
task
- the task to submitresult
- the result to return
RejectedExecutionException
- if the task cannot be
scheduled for execution
java.lang.NullPointerException
- if the task is nullpublic Future submit(Callable task)
ExecutorService
If you would like to immediately block waiting for a task, you can use constructions of the form result = exec.submit(aCallable).get();
Note: The Executors
class includes a set of methods
that can convert some other common closure-like objects,
for example, PrivilegedAction
to
Callable
form so they can be submitted.
submit
in interface ExecutorService
task
- the task to submit
RejectedExecutionException
- if the task cannot be
scheduled for execution
java.lang.NullPointerException
- if the task is nullpublic java.lang.Object invokeAny(java.util.Collection tasks) throws java.lang.InterruptedException, ExecutionException
ExecutorService
invokeAny
in interface ExecutorService
tasks
- the collection of tasks
ExecutionException
- if no task successfully completes
java.lang.InterruptedException
- if interrupted while waitingpublic java.lang.Object invokeAny(java.util.Collection tasks, long timeout, TimeUnit unit) throws java.lang.InterruptedException, ExecutionException, TimeoutException
ExecutorService
invokeAny
in interface ExecutorService
tasks
- the collection of taskstimeout
- the maximum time to waitunit
- the time unit of the timeout argument
java.lang.InterruptedException
- if interrupted while waiting
TimeoutException
- if the given timeout elapses before
any task successfully completes
ExecutionException
- if no task successfully completespublic java.util.List invokeAll(java.util.Collection tasks) throws java.lang.InterruptedException
ExecutorService
Future.isDone()
is true for each
element of the returned list.
Note that a completed task could have
terminated either normally or by throwing an exception.
The results of this method are undefined if the given
collection is modified while this operation is in progress.
invokeAll
in interface ExecutorService
tasks
- the collection of tasks
java.lang.InterruptedException
- if interrupted while waiting, in
which case unfinished tasks are cancelled.public java.util.List invokeAll(java.util.Collection tasks, long timeout, TimeUnit unit) throws java.lang.InterruptedException
ExecutorService
Future.isDone()
is true for each
element of the returned list.
Upon return, tasks that have not completed are cancelled.
Note that a completed task could have
terminated either normally or by throwing an exception.
The results of this method are undefined if the given
collection is modified while this operation is in progress.
invokeAll
in interface ExecutorService
tasks
- the collection of taskstimeout
- the maximum time to waitunit
- the time unit of the timeout argument
java.lang.InterruptedException
- if interrupted while waiting, in
which case unfinished tasks are cancelled
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |