DelayedExecutor

Undocumented in source.

Constructors

this
this(Duration delay, Executor executor)
Undocumented in source.

Members

Functions

execute
void execute(Runnable r)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

delay
Duration delay;
Undocumented in source.
executor
Executor executor;
Undocumented in source.

Inherited Members

From Executor

execute
void execute(Runnable command)

Executes the given command at some time in the future. The command may execute in a new thread, in a pooled thread, or in the calling thread, at the discretion of the {@code Executor} implementation.

Meta