/* * Written by Doug Lea with assistance from members of JCP JSR-166 * Expert Group and released to the public domain. Use, modify, and * redistribute this code in any way without acknowledgement. */ package java.util.concurrent; import java.util.List; import java.util.Collection; import java.security.PrivilegedAction; import java.security.PrivilegedExceptionAction; /** * An Executor that provides methods to manage termination * and those that can produce a {@link Future} for tracking * progress of one or more asynchronous tasks. * An ExecutorService can be shut down, which will cause it * to stop accepting new tasks. After being shut down, the executor * will eventually terminate, at which point no tasks are actively * executing, no tasks are awaiting execution, and no new tasks can be * submitted. * *

The {@link Executors} class provides factory methods for the * executor services provided in this package. * * @since 1.5 * @author Doug Lea */ public interface ExecutorService extends Executor { /** * Submits a Runnable task for execution and returns a Future * representing that task. * * @param task the task to submit * @param result the result to return upon completion * If you do not need a particular result, consider using Boolean.TRUE. * @return a Future representing pending completion of the task, * and whose get() method will return the given value * upon completion * @throws RejectedExecutionException if task cannot be scheduled * for execution */ Future submit(Runnable task, T result); /** * Submits a value-returning task for execution and returns a Future * representing the pending results of the task. * * @param task the task to submit * @return a Future representing pending completion of the task * @throws RejectedExecutionException if task cannot be scheduled * for execution */ Future submit(Callable task); /** * Executes a Runnable task and blocks until it completes normally * or throws an exception. * * @param task the task to submit * @throws RejectedExecutionException if task cannot be scheduled * for execution * @throws ExecutionException if the task encountered an exception * while executing */ void invoke(Runnable task) throws ExecutionException, InterruptedException; /** * Executes a value-returning task and blocks until it returns a * value or throws an exception. * * @param task the task to submit * @return a Future representing pending completion of the task * @throws RejectedExecutionException if task cannot be scheduled * for execution * @throws InterruptedException if interrupted while waiting for * completion * @throws ExecutionException if the task encountered an exception * while executing */ T invoke(Callable task) throws ExecutionException, InterruptedException; /** * Submits a privileged action for execution under the current * access control context and returns a Future representing the * pending result object of that action. * * @param action the action to submit * @return a Future representing pending completion of the action * @throws RejectedExecutionException if action cannot be scheduled * for execution */ Future submit(PrivilegedAction action); /** * Submits a privileged exception action for execution under the current * access control context and returns a Future representing the pending * result object of that action. * * @param action the action to submit * @return a Future representing pending completion of the action * @throws RejectedExecutionException if action cannot be scheduled * for execution */ Future submit(PrivilegedExceptionAction action); /** * Initiates an orderly shutdown in which previously submitted * tasks are executed, but no new tasks will be * accepted. Invocation has no additional effect if already shut * down. * @throws SecurityException if a security manager exists and * shutting down this ExecutorService manipulates threads * that the caller is not permitted to access. */ void shutdown(); /** * Attempts to stop all actively executing tasks, halts the * processing of waiting tasks, and returns a list of the tasks that were * awaiting execution. * *

There are no guarantees beyond best-effort attempts to stop * processing actively executing tasks. For example, typical * implementations will cancel via {@link Thread#interrupt}, so if any * tasks mask or fail to respond to interrupts, they may never terminate. * * @return list of tasks that never commenced execution * @throws SecurityException if a security manager exists and * shutting down this ExecutorService manipulates threads * that the caller is not permitted to access. */ List shutdownNow(); /** * Returns true if this executor has been shut down. * * @return true if this executor has been shut down */ boolean isShutdown(); /** * Returns true if all tasks have completed following shut down. * Note that isTerminated is never true unless * either shutdown or shutdownNow was called first. * * @return true if all tasks have completed following shut down */ boolean isTerminated(); /** * Blocks until all tasks have completed execution after a shutdown * request, or the timeout occurs, or the current thread is * interrupted, whichever happens first. * * @param timeout the maximum time to wait * @param unit the time unit of the timeout argument * @return true if this executor terminated and false * if the timeout elapsed before termination * @throws InterruptedException if interrupted while waiting */ boolean awaitTermination(long timeout, TimeUnit unit) throws InterruptedException; /** * Arranges for execution of the given tasks, returning when * all of them complete. * Note that a completed task could have * terminated either normally or by throwing an exception. * @param tasks the collection of tasks * @param result value for each task to return upon completion. * If you do not need a particular result, consider using Boolean.TRUE. * @return A list of Futures representing the tasks, in the same * sequential order as as produced by the iterator for the given task list, each of which has * completed. * @throws InterruptedException if interrupted while waiting, in * which case unfinished tasks are cancelled. * @throws NullPointerException if tasks or any of its elements are null * @throws RejectedExecutionException if any task cannot be scheduled * for execution */ List> invokeAll(Collection tasks, T result) throws InterruptedException; /** * Arranges for execution of the given tasks, returning normally * when all complete or the given timeout expires, whichever * happens first. * Upon return, tasks that have not completed are cancelled. * Note that a completed task could have * terminated either normally or by throwing an exception. * @param tasks the collection of tasks * @param result value for each task to return upon completion. * If you do not need a particular result, consider using Boolean.TRUE. * @param timeout the maximum time to wait * @return A list of Futures representing the tasks, in the same * sequential order as as produced by the iterator for the given task list. If the operation did * not time out, each task will have completed. If it did time * out, some of these tasks will not have completed. * @param unit the time unit of the timeout argument * @throws InterruptedException if interrupted while waiting, in * which case unfinished tasks are cancelled. * @throws NullPointerException if tasks, any or its elements, or unit are null * @throws RejectedExecutionException if any task cannot be scheduled * for execution */ List> invokeAll(Collection tasks, T result, long timeout, TimeUnit unit) throws InterruptedException; /** * Arranges for execution of the given tasks, returning their results * when all complete. * Note that a completed task could have * terminated either normally or by throwing an exception. * @param tasks the collection of tasks * @return A list of Futures representing the tasks, in the same * sequential order as produced by the iterator for the given task list, each of which has * completed. * @throws InterruptedException if interrupted while waiting, in * which case unfinished tasks are cancelled. * @throws NullPointerException if tasks or any of its elements are null * @throws RejectedExecutionException if any task cannot be scheduled * for execution */ List> invokeAll(Collection> tasks) throws InterruptedException; /** * Arranges for execution of the given tasks, returning their results * when all complete or the timeout expires, whichever happens first. * Upon return, tasks that have not completed are cancelled. * Note that a completed task could have * terminated either normally or by throwing an exception. * @param tasks the collection of tasks * @param timeout the maximum time to wait * @param unit the time unit of the timeout argument * @return A list of Futures representing the tasks, in the same * sequential order as as produced by the iterator for the given task list. If the operation did * not time out, each task will have completed. If it did time * out, some of thiese tasks will not have completed. * @throws InterruptedException if interrupted while waiting, in * which case unfinished tasks are cancelled. * @throws NullPointerException if tasks, any or its elements, or * unit are null * @throws RejectedExecutionException if any task cannot be scheduled * for execution */ List> invokeAll(Collection> tasks, long timeout, TimeUnit unit) throws InterruptedException; /** * Arranges for execution of the given tasks, returning the result * of one that has completed successfully (i.e., without throwing * an exception), if any do. Upon normal or exceptional return, * tasks that have not completed are cancelled. * @param tasks the collection of tasks * @return The result returned by one of the tasks. * @throws InterruptedException if interrupted while waiting * @throws NullPointerException if tasks or any of its elements * are null * @throws IllegalArgumentException if tasks empty * @throws ExecutionException if no task successfully completes * @throws RejectedExecutionException if tasks cannot be scheduled * for execution */ T invokeAny(Collection> tasks) throws InterruptedException, ExecutionException; /** * Arranges for execution of 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. * Upon normal or exceptional return, tasks that have not * completed are cancelled. * @param tasks the collection of tasks * @param timeout the maximum time to wait * @param unit the time unit of the timeout argument * @return The result returned by one of the tasks. * @throws InterruptedException if interrupted while waiting * @throws NullPointerException if tasks, any or its elements, or * unit are null * @throws TimeoutException if the given timeout elapses before * any task successfully completes * @throws ExecutionException if no task successfully completes * @throws RejectedExecutionException if tasks cannot be scheduled * for execution */ T invokeAny(Collection> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException; /** * Arranges for execution of the given tasks, returning the given * result if one completes successfully (i.e., without * throwing an exception). Upon normal or exceptional * return, tasks that have not completed are cancelled. * @param tasks the collection of tasks * @param result the result to return upon successful completion * @return the given result * @throws InterruptedException if interrupted while waiting * @throws NullPointerException if tasks or any of its elements * are null * @throws IllegalArgumentException if tasks empty * @throws ExecutionException if no task successfully completes * @throws RejectedExecutionException if tasks cannot be scheduled * for execution */ T invokeAny(Collection tasks, T result) throws InterruptedException, ExecutionException; /** * Arranges for execution of the given tasks, returning the given result * if one completes successfully (i.e., without throwing * an exception) before the given timeout elapses. * Upon normal or exceptional return, tasks that have not * completed are cancelled. * @param tasks the collection of tasks * @param result the result to return upon successful completion * @param timeout the maximum time to wait * @param unit the time unit of the timeout argument * @return the given result * @throws InterruptedException if interrupted while waiting * @throws NullPointerException if tasks, any or its elements, or * unit are null * @throws TimeoutException if the given timeout elapses before * any task successfully completes * @throws ExecutionException if no task successfully completes * @throws RejectedExecutionException if tasks cannot be scheduled * for execution */ T invokeAny(Collection tasks, T result, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException; }