T
- Actor type (can be ?
if no actor).public interface ActionContext<T> extends ActionBindings
Action
. This provides contextual information
about the running Action and also the ability to cancel it.Modifier and Type | Method and Description |
---|---|
void |
await()
Awaits the execution (or cancellation of the action).
|
boolean |
cancel()
Cancels the associated action.
|
T |
getActor()
Gets the associated actor.
|
ActionEngine |
getEngine()
Gets the associated engine.
|
default java.util.Optional<T> |
getOptActor()
This is a convenience method for getting an actor (optional).
|
long |
getPeriod(java.util.concurrent.TimeUnit unit)
Gets the actions repeat period.
|
default boolean |
hasActor()
Whether the context has an associated actor.
|
boolean |
isCancelled()
Whether the action has been cancelled.
|
boolean |
isDone()
Whether the action has been ran (or cancelled).
|
default boolean |
isPeriodic()
Checks whether the action is periodic.
|
boolean |
isPeriodicOnException()
Whether the action will continue to reschedule on exception.
|
containsKey, get, put, putAll, remove, removeAll, toMap
void await() throws java.lang.InterruptedException
java.lang.InterruptedException
- If the current thread was interrupted.boolean cancel()
T getActor()
ActionEngine getEngine()
default java.util.Optional<T> getOptActor()
long getPeriod(java.util.concurrent.TimeUnit unit)
unit
- TimeUnit to convert period to.default boolean hasActor()
boolean isCancelled()
boolean isDone()
default boolean isPeriodic()
boolean isPeriodicOnException()