Package adams.core
Interface MultiAttemptWithWaitSupporter
-
- All Superinterfaces:
MultiAttemptSupporter
- All Known Implementing Classes:
CopyFile
,DumpFile
,MoveFile
,ScpJobRunner
,SerializingJobRunner
,WaitForFile
public interface MultiAttemptWithWaitSupporter extends MultiAttemptSupporter
Interface for classes that support multiple attempts, but allow a waiting interval in between attempts.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
attemptIntervalTipText()
Returns the tip text for this property.int
getAttemptInterval()
Returns the time to wait between attempts in msec.void
setAttemptInterval(int value)
Sets the time to wait between attempts in msec.-
Methods inherited from interface adams.core.MultiAttemptSupporter
getNumAttempts, numAttemptsTipText, setNumAttempts
-
-
-
-
Method Detail
-
setAttemptInterval
void setAttemptInterval(int value)
Sets the time to wait between attempts in msec.- Parameters:
value
- the time in msec
-
getAttemptInterval
int getAttemptInterval()
Returns the time to wait between attempts in msec.- Returns:
- the time in msec
-
attemptIntervalTipText
String attemptIntervalTipText()
Returns the tip text for this property.- Returns:
- tip text for this property suitable for displaying in the GUI or for listing the options.
-
-