public interface java.util.concurrent
RunnableScheduledFuture<V>


Show All Login
Java SE 6
  
Implements: RunnableFuture, ScheduledFuture
Details
A ScheduledFuture that is Runnable. Successful execution of the run method causes completion of the Future and allows access to its results.
since1.6
VThe result type returned by this Future's get method
See also java.util.concurrent.FutureTask, java.util.concurrent.Executor

Properties
public boolean isPeriodic() Details
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.
returntrue if this task is periodic