-
- All Superinterfaces:
java.lang.Runnable
,WorkerTask
public interface SchedulerTask extends WorkerTask
TheSchedulerTask
extends theRunnable
interface by methods that are needed for recurrent execution of a task.- Since:
- 1.6
- Version:
- 1.9
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isDone()
Returnstrue
if this task is finished and should never be executed again.boolean
isReadyToRun()
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:
true
if this task can be executed now.
-
isDone
boolean isDone()
Returnstrue
if this task is finished and should never be executed again.- Returns:
true
if this task is finished and cannot be executed anymore.
-
-