Package adams.scripting.processor
Interface RemoteCommandProcessorHandler
-
- All Known Subinterfaces:
JobQueueHandler
,MainScriptingEngine
,RemoteScriptingEngine
- All Known Implementing Classes:
AbstractRemoteFlowTab
,AbstractScriptingEngine
,AbstractScriptingEngineEnhancer
,AbstractScriptingEngineWithJobQueue
,CommandDumperHandler
,CommandDumperHandler
,CommandRunner
,DefaultMainScriptingEngine
,DefaultScriptingEngine
,DefaultWorkerScriptingEngine
,FileBasedScriptingEngine
,ForwardingScriptingEngine
,Logging
,ManualFeedScriptingEngine
,MultiScriptingEngine
,RemoteCommandReader
,RemoteCommandToString
,RemoteCommandWriter
,RemoteExecutionTrigger
,RemoteFlowCommandsTab
,RemoteLoggingTab
,SendRemoteCommand
,StringToRemoteCommand
public interface RemoteCommandProcessorHandler
Interface for classes that make use ofRemoteCommandProcessor
.- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RemoteCommandProcessor
getCommandProcessor()
Returns the command processor in use.void
setCommandProcessor(RemoteCommandProcessor value)
Sets the command processor to use.
-
-
-
Method Detail
-
setCommandProcessor
void setCommandProcessor(RemoteCommandProcessor value)
Sets the command processor to use.- Parameters:
value
- the processor
-
getCommandProcessor
RemoteCommandProcessor getCommandProcessor()
Returns the command processor in use.- Returns:
- the processor
-
-