src/java.base/share/classes/java/util/concurrent/ExecutorService.java
author dl
Thu, 02 May 2019 06:33:28 -0700
changeset 54685 e1bec7613945
parent 47216 71c04702a3d5
permissions -rw-r--r--
8220248: fix headings in java.util.concurrent Reviewed-by: martin, jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4110
diff changeset
     6
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4110
diff changeset
     8
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4110
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4110
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4110
diff changeset
    22
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * This file is available under and governed by the GNU General Public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * License version 2 only, as published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * However, the following notice accompanied the original version of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * file:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * Written by Doug Lea with assistance from members of JCP JSR-166
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * Expert Group and released to the public domain, as explained at
9242
ef138d47df58 7034657: Update Creative Commons license URL in legal notices
dl
parents: 5506
diff changeset
    33
 * http://creativecommons.org/publicdomain/zero/1.0/
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
package java.util.concurrent;
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
    37
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
    38
import java.util.Collection;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.util.List;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * An {@link Executor} that provides methods to manage termination and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * methods that can produce a {@link Future} for tracking progress of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * one or more asynchronous tasks.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    46
 * <p>An {@code ExecutorService} can be shut down, which will cause
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * it to reject new tasks.  Two different methods are provided for
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    48
 * shutting down an {@code ExecutorService}. The {@link #shutdown}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * method will allow previously submitted tasks to execute before
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * terminating, while the {@link #shutdownNow} method prevents waiting
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * tasks from starting and attempts to stop currently executing tasks.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * Upon termination, an executor has no tasks actively executing, no
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * tasks awaiting execution, and no new tasks can be submitted.  An
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    54
 * unused {@code ExecutorService} should be shut down to allow
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * reclamation of its resources.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    57
 * <p>Method {@code submit} extends base method {@link
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    58
 * Executor#execute(Runnable)} by creating and returning a {@link Future}
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    59
 * that can be used to cancel execution and/or wait for completion.
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    60
 * Methods {@code invokeAny} and {@code invokeAll} perform the most
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * commonly useful forms of bulk execution, executing a collection of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * tasks and then waiting for at least one, or all, to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * complete. (Class {@link ExecutorCompletionService} can be used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * write customized variants of these methods.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * <p>The {@link Executors} class provides factory methods for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * executor services provided in this package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 *
54685
e1bec7613945 8220248: fix headings in java.util.concurrent
dl
parents: 47216
diff changeset
    69
 * <h2>Usage Examples</h2>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * Here is a sketch of a network service in which threads in a thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * pool service incoming requests. It uses the preconfigured {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * Executors#newFixedThreadPool} factory method:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 *
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
    75
 * <pre> {@code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * class NetworkService implements Runnable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *   private final ServerSocket serverSocket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *   private final ExecutorService pool;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 *   public NetworkService(int port, int poolSize)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *       throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 *     serverSocket = new ServerSocket(port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 *     pool = Executors.newFixedThreadPool(poolSize);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
 *   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
 *   public void run() { // run the service
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
 *     try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
 *       for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
 *         pool.execute(new Handler(serverSocket.accept()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *       }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 *     } catch (IOException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 *       pool.shutdown();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 *     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
 *   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
 * }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
 * class Handler implements Runnable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
 *   private final Socket socket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
 *   Handler(Socket socket) { this.socket = socket; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
 *   public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
 *     // read and service request on socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
 *   }
14325
622c473a21aa 8001575: Minor/sync/cleanup j.u.c with Dougs CVS - Oct 2012
dl
parents: 9242
diff changeset
   103
 * }}</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
 *
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   105
 * The following method shuts down an {@code ExecutorService} in two phases,
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   106
 * first by calling {@code shutdown} to reject incoming tasks, and then
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   107
 * calling {@code shutdownNow}, if necessary, to cancel any lingering tasks:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
 *
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 25859
diff changeset
   109
 * <pre> {@code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
 * void shutdownAndAwaitTermination(ExecutorService pool) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
 *   pool.shutdown(); // Disable new tasks from being submitted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
 *   try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
 *     // Wait a while for existing tasks to terminate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
 *     if (!pool.awaitTermination(60, TimeUnit.SECONDS)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
 *       pool.shutdownNow(); // Cancel currently executing tasks
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
 *       // Wait a while for tasks to respond to being cancelled
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
 *       if (!pool.awaitTermination(60, TimeUnit.SECONDS))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
 *           System.err.println("Pool did not terminate");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
 *     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
 *   } catch (InterruptedException ie) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
 *     // (Re-)Cancel if current thread also interrupted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
 *     pool.shutdownNow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
 *     // Preserve interrupt status
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
 *     Thread.currentThread().interrupt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
 *   }
14325
622c473a21aa 8001575: Minor/sync/cleanup j.u.c with Dougs CVS - Oct 2012
dl
parents: 9242
diff changeset
   126
 * }}</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
 * <p>Memory consistency effects: Actions in a thread prior to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
 * submission of a {@code Runnable} or {@code Callable} task to an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
 * {@code ExecutorService}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
 * <a href="package-summary.html#MemoryVisibility"><i>happen-before</i></a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
 * any actions taken by that task, which in turn <i>happen-before</i> the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
 * result is retrieved via {@code Future.get()}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
 * @author Doug Lea
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
public interface ExecutorService extends Executor {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * Initiates an orderly shutdown in which previously submitted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * tasks are executed, but no new tasks will be accepted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * Invocation has no additional effect if already shut down.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     *
61
5691b03db1ea 6620549: ExecutorService#shutdown should clearly state that it does not block
martin
parents: 2
diff changeset
   145
     * <p>This method does not wait for previously submitted tasks to
5691b03db1ea 6620549: ExecutorService#shutdown should clearly state that it does not block
martin
parents: 2
diff changeset
   146
     * complete execution.  Use {@link #awaitTermination awaitTermination}
5691b03db1ea 6620549: ExecutorService#shutdown should clearly state that it does not block
martin
parents: 2
diff changeset
   147
     * to do that.
5691b03db1ea 6620549: ExecutorService#shutdown should clearly state that it does not block
martin
parents: 2
diff changeset
   148
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * @throws SecurityException if a security manager exists and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     *         shutting down this ExecutorService may manipulate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     *         threads that the caller is not permitted to modify
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     *         because it does not hold {@link
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   153
     *         java.lang.RuntimePermission}{@code ("modifyThread")},
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   154
     *         or the security manager's {@code checkAccess} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     *         denies access.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    void shutdown();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * Attempts to stop all actively executing tasks, halts the
61
5691b03db1ea 6620549: ExecutorService#shutdown should clearly state that it does not block
martin
parents: 2
diff changeset
   161
     * processing of waiting tasks, and returns a list of the tasks
5691b03db1ea 6620549: ExecutorService#shutdown should clearly state that it does not block
martin
parents: 2
diff changeset
   162
     * that were awaiting execution.
5691b03db1ea 6620549: ExecutorService#shutdown should clearly state that it does not block
martin
parents: 2
diff changeset
   163
     *
5691b03db1ea 6620549: ExecutorService#shutdown should clearly state that it does not block
martin
parents: 2
diff changeset
   164
     * <p>This method does not wait for actively executing tasks to
5691b03db1ea 6620549: ExecutorService#shutdown should clearly state that it does not block
martin
parents: 2
diff changeset
   165
     * terminate.  Use {@link #awaitTermination awaitTermination} to
5691b03db1ea 6620549: ExecutorService#shutdown should clearly state that it does not block
martin
parents: 2
diff changeset
   166
     * do that.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * <p>There are no guarantees beyond best-effort attempts to stop
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * processing actively executing tasks.  For example, typical
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * implementations will cancel via {@link Thread#interrupt}, so any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * task that fails to respond to interrupts may never terminate.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * @return list of tasks that never commenced execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * @throws SecurityException if a security manager exists and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     *         shutting down this ExecutorService may manipulate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     *         threads that the caller is not permitted to modify
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     *         because it does not hold {@link
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   178
     *         java.lang.RuntimePermission}{@code ("modifyThread")},
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   179
     *         or the security manager's {@code checkAccess} method
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     *         denies access.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    List<Runnable> shutdownNow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    /**
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   185
     * Returns {@code true} if this executor has been shut down.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     *
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   187
     * @return {@code true} if this executor has been shut down
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    boolean isShutdown();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    /**
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   192
     * Returns {@code true} if all tasks have completed following shut down.
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   193
     * Note that {@code isTerminated} is never {@code true} unless
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   194
     * either {@code shutdown} or {@code shutdownNow} was called first.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     *
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   196
     * @return {@code true} if all tasks have completed following shut down
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    boolean isTerminated();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * Blocks until all tasks have completed execution after a shutdown
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * request, or the timeout occurs, or the current thread is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * interrupted, whichever happens first.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * @param timeout the maximum time to wait
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * @param unit the time unit of the timeout argument
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   207
     * @return {@code true} if this executor terminated and
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   208
     *         {@code false} if the timeout elapsed before termination
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @throws InterruptedException if interrupted while waiting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    boolean awaitTermination(long timeout, TimeUnit unit)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        throws InterruptedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * Submits a value-returning task for execution and returns a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * Future representing the pending results of the task. The
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   217
     * Future's {@code get} method will return the task's result upon
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * successful completion.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * If you would like to immediately block waiting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * for a task, you can use constructions of the form
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   223
     * {@code result = exec.submit(aCallable).get();}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     *
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   225
     * <p>Note: The {@link Executors} class includes a set of methods
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * that can convert some other common closure-like objects,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * for example, {@link java.security.PrivilegedAction} to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * {@link Callable} form so they can be submitted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * @param task the task to submit
19048
7d0a94c79779 8021417: Fix doclint issues in java.util.concurrent
chegar
parents: 18790
diff changeset
   231
     * @param <T> the type of the task's result
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * @return a Future representing pending completion of the task
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * @throws RejectedExecutionException if the task cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     *         scheduled for execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * @throws NullPointerException if the task is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    <T> Future<T> submit(Callable<T> task);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     * Submits a Runnable task for execution and returns a Future
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   241
     * representing that task. The Future's {@code get} method will
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * return the given result upon successful completion.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * @param task the task to submit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * @param result the result to return
19048
7d0a94c79779 8021417: Fix doclint issues in java.util.concurrent
chegar
parents: 18790
diff changeset
   246
     * @param <T> the type of the result
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * @return a Future representing pending completion of the task
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * @throws RejectedExecutionException if the task cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     *         scheduled for execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * @throws NullPointerException if the task is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    <T> Future<T> submit(Runnable task, T result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * Submits a Runnable task for execution and returns a Future
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   256
     * representing that task. The Future's {@code get} method will
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   257
     * return {@code null} upon <em>successful</em> completion.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * @param task the task to submit
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * @return a Future representing pending completion of the task
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * @throws RejectedExecutionException if the task cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     *         scheduled for execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * @throws NullPointerException if the task is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    Future<?> submit(Runnable task);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * Executes the given tasks, returning a list of Futures holding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * their status and results when all complete.
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   270
     * {@link Future#isDone} is {@code true} for each
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * element of the returned list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * Note that a <em>completed</em> task could have
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * terminated either normally or by throwing an exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * The results of this method are undefined if the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * collection is modified while this operation is in progress.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * @param tasks the collection of tasks
19048
7d0a94c79779 8021417: Fix doclint issues in java.util.concurrent
chegar
parents: 18790
diff changeset
   278
     * @param <T> the type of the values returned from the tasks
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   279
     * @return a list of Futures representing the tasks, in the same
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     *         sequential order as produced by the iterator for the
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   281
     *         given task list, each of which has completed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * @throws InterruptedException if interrupted while waiting, in
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   283
     *         which case unfinished tasks are cancelled
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   284
     * @throws NullPointerException if tasks or any of its elements are {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     * @throws RejectedExecutionException if any task cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     *         scheduled for execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
    <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
        throws InterruptedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * Executes the given tasks, returning a list of Futures holding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * their status and results
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * when all complete or the timeout expires, whichever happens first.
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   295
     * {@link Future#isDone} is {@code true} for each
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * element of the returned list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * Upon return, tasks that have not completed are cancelled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * Note that a <em>completed</em> task could have
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * terminated either normally or by throwing an exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * The results of this method are undefined if the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * collection is modified while this operation is in progress.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * @param tasks the collection of tasks
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * @param timeout the maximum time to wait
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * @param unit the time unit of the timeout argument
19048
7d0a94c79779 8021417: Fix doclint issues in java.util.concurrent
chegar
parents: 18790
diff changeset
   306
     * @param <T> the type of the values returned from the tasks
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     * @return a list of Futures representing the tasks, in the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     *         sequential order as produced by the iterator for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     *         given task list. If the operation did not time out,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     *         each task will have completed. If it did time out, some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     *         of these tasks will not have completed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * @throws InterruptedException if interrupted while waiting, in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     *         which case unfinished tasks are cancelled
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
     * @throws NullPointerException if tasks, any of its elements, or
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   315
     *         unit are {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * @throws RejectedExecutionException if any task cannot be scheduled
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     *         for execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
    <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
                                  long timeout, TimeUnit unit)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        throws InterruptedException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * Executes the given tasks, returning the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * of one that has completed successfully (i.e., without throwing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * an exception), if any do. Upon normal or exceptional return,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * tasks that have not completed are cancelled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * The results of this method are undefined if the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * collection is modified while this operation is in progress.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * @param tasks the collection of tasks
19048
7d0a94c79779 8021417: Fix doclint issues in java.util.concurrent
chegar
parents: 18790
diff changeset
   332
     * @param <T> the type of the values returned from the tasks
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * @return the result returned by one of the tasks
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * @throws InterruptedException if interrupted while waiting
4110
ac033ba6ede4 6865582: jsr166y - jsr166 maintenance update
dl
parents: 61
diff changeset
   335
     * @throws NullPointerException if tasks or any element task
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   336
     *         subject to execution is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * @throws IllegalArgumentException if tasks is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * @throws ExecutionException if no task successfully completes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * @throws RejectedExecutionException if tasks cannot be scheduled
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
     *         for execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    <T> T invokeAny(Collection<? extends Callable<T>> tasks)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        throws InterruptedException, ExecutionException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * Executes the given tasks, returning the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * of one that has completed successfully (i.e., without throwing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * an exception), if any do before the given timeout elapses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * Upon normal or exceptional return, tasks that have not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * completed are cancelled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * The results of this method are undefined if the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * collection is modified while this operation is in progress.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * @param tasks the collection of tasks
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * @param timeout the maximum time to wait
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * @param unit the time unit of the timeout argument
19048
7d0a94c79779 8021417: Fix doclint issues in java.util.concurrent
chegar
parents: 18790
diff changeset
   357
     * @param <T> the type of the values returned from the tasks
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   358
     * @return the result returned by one of the tasks
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * @throws InterruptedException if interrupted while waiting
4110
ac033ba6ede4 6865582: jsr166y - jsr166 maintenance update
dl
parents: 61
diff changeset
   360
     * @throws NullPointerException if tasks, or unit, or any element
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   361
     *         task subject to execution is {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     * @throws TimeoutException if the given timeout elapses before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     *         any task successfully completes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * @throws ExecutionException if no task successfully completes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * @throws RejectedExecutionException if tasks cannot be scheduled
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     *         for execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
    <T> T invokeAny(Collection<? extends Callable<T>> tasks,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
                    long timeout, TimeUnit unit)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        throws InterruptedException, ExecutionException, TimeoutException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
}