Package adams.flow.execution
Interface TimedFlowExecutionListener
-
- All Superinterfaces:
CleanUpHandler
,FlowExecutionListener
- All Known Implementing Classes:
AbstractTimedFlowExecutionListenerWithTable
,CurrentlyExecuted
,ExecutionCounter
,Time
public interface TimedFlowExecutionListener extends FlowExecutionListener
Interface for listeners that performs updates/etc at regular intervals.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getUpdateInterval()
Returns the interval after which to trigger, for instance, an update.void
setUpdateInterval(int value)
Sets the interval after which to trigger, for instance, an update.String
updateIntervalTipText()
Returns the tip text for this property.-
Methods inherited from interface adams.core.CleanUpHandler
cleanUp
-
Methods inherited from interface adams.flow.execution.FlowExecutionListener
finishListening, getOwner, postExecute, postInput, postOutput, preExecute, preInput, preOutput, setOwner, startListening
-
-
-
-
Method Detail
-
setUpdateInterval
void setUpdateInterval(int value)
Sets the interval after which to trigger, for instance, an update.- Parameters:
value
- the interval
-
getUpdateInterval
int getUpdateInterval()
Returns the interval after which to trigger, for instance, an update.- Returns:
- the interval
-
updateIntervalTipText
String updateIntervalTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-