- All Known Subinterfaces:
TaskContext
public interface TaskRef
External handle to a
TaskFunction bound to an execution Stage. A TaskRef is used to cue a task for execution, and to
cancel the execution of a cued task. TaskRef is thread safe.- See Also:
-
Method Summary
-
Method Details
-
isCued
boolean isCued()Returnstrueif the task is currently scheduled for execution. -
cue
boolean cue()Schedules the task to execute as a sequential process. Returnstrueif this operation caused the scheduling of the task; returnsfalseif the task was already scheduled to execute.TaskFunction.runTask()will be concurrently invoked exactly once for each timecue()returnstrue, minus the number of timescancel()returnstrue. The task becomes uncued prior to the invocation ofrunTask(), enabling the task to re-cue itself while running. -
cancel
boolean cancel()Cancels the task to prevent it from executing. Returnstrueif this operation caused the cancellation of the task; returnsfalseif the task was not scheduled to execute.
-