Added in API level 9

RunnableScheduledFuture

interface RunnableScheduledFuture<V : Any!> : RunnableFuture<V>, ScheduledFuture<V>
java.util.concurrent.RunnableScheduledFuture

A ScheduledFuture that is Runnable. Successful execution of the run method causes completion of the Future and allows access to its results.

Summary

Public methods
abstract Boolean

Returns true if this task is periodic.

Inherited functions

Public methods

isPeriodic

Added in API level 9
abstract fun isPeriodic(): Boolean

Returns 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
Boolean true if this task is periodic