| java.util.concurrent.RunnableScheduledFuture
RunnableScheduledFuture | public interface RunnableScheduledFuture extends RunnableFuture<V>,ScheduledFuture<V>(Code) | | A
ScheduledFuture that is
Runnable . Successful
execution of the run method causes completion of the
Future and allows access to its results.
See Also: FutureTask See Also: Executor since: 1.6 author: Doug Lea< Parameters: V - > The result type returned by this Future's get method |
Method Summary | |
boolean | isPeriodic() Returns true if this is a periodic task. |
isPeriodic | boolean isPeriodic()(Code) | | Returns true if this is a periodic task. A periodic task may
re-run according to some schedule. A non-periodic task can be
run only once.
true if this task is periodic |
|
|