| java.lang.Object org.drools.concurrent.CommandExecutor
CommandExecutor | public class CommandExecutor implements Runnable,Serializable(Code) | | The CommandExecutor is a Producer/Consumer style classes that provides a queue of Commands
in a LinkedBlockingQueue. This the run() method loops for continously until shutdown() is
called.
|
shutdown | public void shutdown()(Code) | | Allows the looping run() method to execute.
|
submit | public Future submit(Command command)(Code) | | Submit a Command for execution
Parameters: command - return the Future |
|
|