Module org.snmp4j

Interface SchedulerTask

All Superinterfaces:
Runnable, WorkerTask

public interface SchedulerTask extends WorkerTask
The SchedulerTask extends the Runnable interface by methods that are needed for recurrent execution of a task.
Since:
1.6
Version:
1.9
Author:
Frank Fock
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns true if this task is finished and should never be executed again.
    boolean
    Checks whether this task is ready to be executed.

    Methods inherited from interface java.lang.Runnable

    run

    Methods inherited from interface org.snmp4j.util.WorkerTask

    interrupt, join, terminate
  • Method Details

    • 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()
      Returns true if this task is finished and should never be executed again.
      Returns:
      true if this task is finished and cannot be executed anymore.