jdk/src/java.base/share/classes/java/util/concurrent/ScheduledExecutorService.java
author zmajo
Fri, 03 Jul 2015 07:23:45 +0200
changeset 31671 362e0c0acece
parent 25859 3317bb8137f4
child 32991 b27c76b82713
permissions -rw-r--r--
8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics Summary: Annotate possibly intrinsified methods with @HotSpotIntrinsicCandidate. Add checks omitted by intrinsics to the library code. Add CheckIntrinsics flags to check consistency of intrinsics. Reviewed-by: jrose, kvn, thartmann, vlivanov, abuckley, darcy, ascarpino, briangoetz, alanb, aph, dnsimon
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: 2
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: 2
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: 2
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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: 7518
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;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * An {@link ExecutorService} that can schedule commands to run after a given
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * delay, or to execute periodically.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    42
 * <p>The {@code schedule} methods create tasks with various delays
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * and return a task object that can be used to cancel or check
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    44
 * execution. The {@code scheduleAtFixedRate} and
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    45
 * {@code scheduleWithFixedDelay} methods create and execute tasks
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * that run periodically until cancelled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    48
 * <p>Commands submitted using the {@link Executor#execute(Runnable)}
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    49
 * and {@link ExecutorService} {@code submit} methods are scheduled
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    50
 * with a requested delay of zero. Zero and negative delays (but not
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    51
 * periods) are also allowed in {@code schedule} methods, and are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * treated as requests for immediate execution.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    54
 * <p>All {@code schedule} methods accept <em>relative</em> delays and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * periods as arguments, not absolute times or dates. It is a simple
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * matter to transform an absolute time represented as a {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * java.util.Date} to the required form. For example, to schedule at
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    58
 * a certain future {@code date}, you can use: {@code schedule(task,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * date.getTime() - System.currentTimeMillis(),
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    60
 * TimeUnit.MILLISECONDS)}. Beware however that expiration of a
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    61
 * relative delay need not coincide with the current {@code Date} at
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * which the task is enabled due to network time synchronization
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * protocols, clock drift, or other factors.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
    65
 * <p>The {@link Executors} class provides convenient factory methods for
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * the ScheduledExecutorService implementations provided in this package.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * <h3>Usage Example</h3>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * Here is a class with a method that sets up a ScheduledExecutorService
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * to beep every ten seconds for an hour:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 *
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    73
 *  <pre> {@code
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * import static java.util.concurrent.TimeUnit.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * class BeeperControl {
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    76
 *   private final ScheduledExecutorService scheduler =
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    77
 *     Executors.newScheduledThreadPool(1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 *
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    79
 *   public void beepForAnHour() {
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    80
 *     final Runnable beeper = new Runnable() {
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    81
 *       public void run() { System.out.println("beep"); }
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    82
 *     };
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    83
 *     final ScheduledFuture<?> beeperHandle =
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    84
 *       scheduler.scheduleAtFixedRate(beeper, 10, 10, SECONDS);
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    85
 *     scheduler.schedule(new Runnable() {
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    86
 *       public void run() { beeperHandle.cancel(true); }
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    87
 *     }, 60 * 60, SECONDS);
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    88
 *   }
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
    89
 * }}</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
 * @author Doug Lea
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
public interface ScheduledExecutorService extends ExecutorService {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * Creates and executes a one-shot action that becomes enabled
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * after the given delay.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * @param command the task to execute
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * @param delay the time from now to delay execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * @param unit the time unit of the delay parameter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * @return a ScheduledFuture representing pending completion of
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   104
     *         the task and whose {@code get()} method will return
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   105
     *         {@code null} upon completion
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * @throws RejectedExecutionException if the task cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     *         scheduled for execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * @throws NullPointerException if command is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    public ScheduledFuture<?> schedule(Runnable command,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                                       long delay, TimeUnit unit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * Creates and executes a ScheduledFuture that becomes enabled after the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * given delay.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * @param callable the function to execute
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * @param delay the time from now to delay execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * @param unit the time unit of the delay parameter
19048
7d0a94c79779 8021417: Fix doclint issues in java.util.concurrent
chegar
parents: 18790
diff changeset
   120
     * @param <V> the type of the callable's result
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * @return a ScheduledFuture that can be used to extract result or cancel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @throws RejectedExecutionException if the task cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     *         scheduled for execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * @throws NullPointerException if callable is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    public <V> ScheduledFuture<V> schedule(Callable<V> callable,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                                           long delay, TimeUnit unit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * Creates and executes a periodic action that becomes enabled first
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * after the given initial delay, and subsequently with the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * period; that is executions will commence after
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   133
     * {@code initialDelay} then {@code initialDelay+period}, then
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   134
     * {@code initialDelay + 2 * period}, and so on.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * If any execution of the task
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * encounters an exception, subsequent executions are suppressed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * Otherwise, the task will only terminate via cancellation or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * termination of the executor.  If any execution of this task
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * takes longer than its period, then subsequent executions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * may start late, but will not concurrently execute.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * @param command the task to execute
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * @param initialDelay the time to delay first execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * @param period the period between successive executions
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * @param unit the time unit of the initialDelay and period parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * @return a ScheduledFuture representing pending completion of
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   147
     *         the task, and whose {@code get()} method will throw an
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     *         exception upon cancellation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * @throws RejectedExecutionException if the task cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     *         scheduled for execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * @throws NullPointerException if command is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @throws IllegalArgumentException if period less than or equal to zero
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    public ScheduledFuture<?> scheduleAtFixedRate(Runnable command,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
                                                  long initialDelay,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                                                  long period,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                                                  TimeUnit unit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * Creates and executes a periodic action that becomes enabled first
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * after the given initial delay, and subsequently with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * given delay between the termination of one execution and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * commencement of the next.  If any execution of the task
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * encounters an exception, subsequent executions are suppressed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * Otherwise, the task will only terminate via cancellation or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * termination of the executor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * @param command the task to execute
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @param initialDelay the time to delay first execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * @param delay the delay between the termination of one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * execution and the commencement of the next
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * @param unit the time unit of the initialDelay and delay parameters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * @return a ScheduledFuture representing pending completion of
18790
d25399d849bc 8019370: Sync j.u.c Fork/Join from 166 to tl
psandoz
parents: 14325
diff changeset
   174
     *         the task, and whose {@code get()} method will throw an
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     *         exception upon cancellation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @throws RejectedExecutionException if the task cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     *         scheduled for execution
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * @throws NullPointerException if command is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * @throws IllegalArgumentException if delay less than or equal to zero
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                                                     long initialDelay,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
                                                     long delay,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
                                                     TimeUnit unit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
}