Package adams.flow.core
Interface RemoteExecutionHandler
-
- All Superinterfaces:
Actor
,AdditionalInformationHandler
,CleanUpHandler
,Comparable
,Destroyable
,ErrorHandler
,LoggingLevelHandler
,LoggingSupporter
,OptionHandler
,QuickInfoSupporter
,Serializable
,ShallowCopySupporter<Actor>
,Stoppable
,StoppableWithFeedback
,VariableChangeListener
,VariablesInspectionHandler
- All Known Implementing Classes:
RemoteExecutionTrigger
public interface RemoteExecutionHandler extends Actor
Interface for actors that manage remote execution.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Field Summary
-
Fields inherited from interface adams.flow.core.Actor
FILE_EXTENSION, FILE_EXTENSION_GZ
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
connectionTipText()
Returns the tip text for this property.Connection
getConnection()
Returns the connection used for sending the flow.StorageName[]
getStorageNames()
Returns the names of the storage items to transfer.VariableName[]
getVariableNames()
Returns the names of the variables to transfer.void
setConnection(Connection value)
Sets the connection used for sending the flow.void
setStorageNames(StorageName[] value)
Sets the names of the storage items to transfer.void
setVariableNames(VariableName[] value)
Sets the names of the variables to transfer.String
storageNamesTipText()
Returns the tip text for this property.String
variableNamesTipText()
Returns the tip text for this property.-
Methods inherited from interface adams.flow.core.Actor
cleanUp, compareTo, destroy, equals, execute, findVariables, getAnnotations, getDefaultName, getDetectedVariables, getErrorHandler, getFlowExecutionListeningSupporter, getFullName, getName, getNextSibling, getParent, getParentComponent, getPreviousSibling, getQuickInfo, getRoot, getScopeHandler, getSilent, getSkip, getStopFlowOnError, getStopMessage, getStorageHandler, getVariables, handleError, hasErrorHandler, hasStopMessage, index, isExecuted, isFinished, isHeadless, isStopped, setAnnotations, setErrorHandler, setName, setParent, setSilent, setSkip, setStopFlowOnError, setUp, setVariables, shallowCopy, shallowCopy, sizeOf, stopExecution, stopExecution, toCommandLine, variableChanged, wrapUp
-
Methods inherited from interface adams.core.AdditionalInformationHandler
getAdditionalInformation
-
Methods inherited from interface adams.core.logging.LoggingLevelHandler
getLoggingLevel, setLoggingLevel
-
Methods inherited from interface adams.core.logging.LoggingSupporter
getLogger, isLoggingEnabled
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager
-
Methods inherited from interface adams.core.VariablesInspectionHandler
canInspectOptions
-
-
-
-
Method Detail
-
setStorageNames
void setStorageNames(StorageName[] value)
Sets the names of the storage items to transfer.- Parameters:
value
- the storage names
-
getStorageNames
StorageName[] getStorageNames()
Returns the names of the storage items to transfer.- Returns:
- the storage names
-
storageNamesTipText
String storageNamesTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the gui
-
setVariableNames
void setVariableNames(VariableName[] value)
Sets the names of the variables to transfer.- Parameters:
value
- the variable names
-
getVariableNames
VariableName[] getVariableNames()
Returns the names of the variables to transfer.- Returns:
- the variable names
-
variableNamesTipText
String variableNamesTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the gui
-
setConnection
void setConnection(Connection value)
Sets the connection used for sending the flow.- Parameters:
value
- the connection
-
getConnection
Connection getConnection()
Returns the connection used for sending the flow.- Returns:
- the connection
-
connectionTipText
String connectionTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the gui
-
-