You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.0 KiB
59 lines
1.0 KiB
/*
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
/*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
* Written by Doug Lea with assistance from members of JCP JSR-166
|
|
* Expert Group and released to the public domain, as explained at
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
package java.util.concurrent;
|
|
|
|
/**
|
|
* A {@link ScheduledFuture} that is {@link Runnable}. Successful
|
|
* execution of the {@code run} method causes completion of the
|
|
* {@code Future} and allows access to its results.
|
|
* @see FutureTask
|
|
* @see Executor
|
|
* @since 1.6
|
|
* @author Doug Lea
|
|
* @param <V> The result type returned by this Future's {@code get} method
|
|
*/
|
|
public interface RunnableScheduledFuture<V> extends RunnableFuture<V>, ScheduledFuture<V> {
|
|
|
|
/**
|
|
* Returns {@code true} if this task is periodic. A periodic task may
|
|
* re-run according to some schedule. A non-periodic task can be
|
|
* run only once.
|
|
*
|
|
* @return {@code true} if this task is periodic
|
|
*/
|
|
boolean isPeriodic();
|
|
}
|