schedule

JVM
1.0
inline fun Timer.schedule(
    delay: Long,
    crossinline action: TimerTask.() -> Unit
): TimerTask

(source)

Schedules an action to be executed after the specified delay (expressed in milliseconds).

JVM
1.0
inline fun Timer.schedule(
    time: Date,
    crossinline action: TimerTask.() -> Unit
): TimerTask

(source)

Schedules an action to be executed at the specified time.

JVM
1.0
inline fun Timer.schedule(
    delay: Long,
    period: Long,
    crossinline action: TimerTask.() -> Unit
): TimerTask

(source)

Schedules an action to be executed periodically, starting after the specified delay (expressed in milliseconds) and with the interval of period milliseconds between the end of the previous task and the start of the next one.

JVM
1.0
inline fun Timer.schedule(
    time: Date,
    period: Long,
    crossinline action: TimerTask.() -> Unit
): TimerTask

(source)

Schedules an action to be executed periodically, starting at the specified time and with the interval of period milliseconds between the end of the previous task and the start of the next one.