Uses of Interface
org.d_haven.event.command.Command

Packages that use Command
org.d_haven.event.command   
 

Uses of Command in org.d_haven.event.command
 

Subinterfaces of Command in org.d_haven.event.command
 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.
 

Methods in org.d_haven.event.command with parameters of type Command
 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 NullCommandFailureHandler.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 CommandFailureHandler.handleCommandFailure(Command command, java.lang.Throwable throwable)
          Handle a command failure.