-
- All Superinterfaces:
java.lang.Runnable,WorkerTask
public interface SchedulerTask extends WorkerTask
TheSchedulerTaskextends theRunnableinterface by methods that are needed for recurrent execution of a task.- Since:
- 1.6
- Version:
- 1.9
- Author:
- Frank Fock
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisDone()Returnstrueif this task is finished and should never be executed again.booleanisReadyToRun()Checks whether this task is ready to be executed.-
Methods inherited from interface org.snmp4j.util.WorkerTask
interrupt, join, terminate
-
-
-
-
Method Detail
-
isReadyToRun
boolean isReadyToRun()
Checks whether this task is ready to be executed. A task is- Returns:
trueif this task can be executed now.
-
isDone
boolean isDone()
Returnstrueif this task is finished and should never be executed again.- Returns:
trueif this task is finished and cannot be executed anymore.
-
-