-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
cancel()
Cancels the task to prevent it from executing.boolean
cue()
Schedules the task to execute as a sequential process.boolean
isCued()
Returnstrue
if the task is currently scheduled for execution.Stage
stage()
Returns the executionStage
to which the task is bound.
-
-
-
Method Detail
-
stage
Stage stage()
Returns the executionStage
to which the task is bound.
-
isCued
boolean isCued()
Returnstrue
if the task is currently scheduled for execution.
-
cue
boolean cue()
Schedules the task to execute as a sequential process. Returnstrue
if this operation caused the scheduling of the task; returnsfalse
if the task was already scheduled to execute.Task.runTask()
will be concurrently invoked exactly once for each timecue()
returnstrue
, minus the number of timescancel()
returnstrue
. The task becomes uncued prior to the the invocation ofrunTask()
, enabling the task to re-cue itself while running.
-
-