233234235236237238239
public WorkingMemoryEntryPoint getWorkingMemoryEntryPoint(String name) { return this.commandService.execute( new GetWorkingMemoryEntryPointCommand( name ) ); } public void halt() { this.commandService.execute( new HaltCommand() ); }
292293294295296297298
public Collection< ? extends WorkingMemoryEntryPoint> getWorkingMemoryEntryPoints() { return this.commandService.execute( new GetWorkingMemoryEntryPointsCommand() ); } public void halt() { this.commandService.execute( new HaltCommand() ); }