| Package | Description |
|---|---|
| org.d_haven.event.command |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DelayedCommand
A DelayedCommand is a specific type of Command that denotes a an
execution unit that will be delayed at least X number of
milliseconds.
|
interface |
RepeatedCommand
The RepeatedCommand is used to represent a command that operates at a
specified interval over time.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CommandManager.enqueueCommand(Command command)
Add a command to the manager for it to execute.
|
void |
DefaultCommandManager.enqueueCommand(Command command)
Get the Command Sink so that you can enqueue new commands.
|
boolean |
CommandFailureHandler.handleCommandFailure(Command command,
java.lang.Throwable throwable)
Handle a command failure.
|
boolean |
DefaultCommandFailureHandler.handleCommandFailure(Command command,
java.lang.Throwable throwable)
Handle a command failure.
|
boolean |
NullCommandFailureHandler.handleCommandFailure(Command command,
java.lang.Throwable throwable)
Handle a command failure.
|