RunnableScheduledFuture

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 @author Doug Lea @param (V) The result type returned by this Future's {@code get} method

interface RunnableScheduledFuture : RunnableFuture!(V), ScheduledFuture!(V), IRunnableScheduledFuture (
V
) {}

Members

Functions

isPeriodic
bool isPeriodic()

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.

Inherited Members

From IRunnableScheduledFuture

isPeriodic
bool isPeriodic()
Undocumented in source.
cancel
bool cancel(bool mayInterruptIfRunning)
Undocumented in source.
isCancelled
bool isCancelled()
Undocumented in source.

Meta