.. java:import:: org.caosdb.server.entity Message ScheduledJob ============ .. java:package:: org.caosdb.server.jobs :noindex: .. java:type:: public class ScheduledJob ScheduledJob is a wrapper class for jobs held by the Scheduler. It is mainly a means to have simplified interface for the Scheduler which also measures the execution time of the job "from outside". :author: Timm Fitschen Fields ------ runtime ^^^^^^^ .. java:field:: long runtime :outertype: ScheduledJob Constructors ------------ ScheduledJob ^^^^^^^^^^^^ .. java:constructor:: ScheduledJob(Job job) :outertype: ScheduledJob Methods ------- equals ^^^^^^ .. java:method:: @Override public boolean equals(Object obj) :outertype: ScheduledJob getJob ^^^^^^ .. java:method:: public Job getJob() :outertype: ScheduledJob getTransactionStage ^^^^^^^^^^^^^^^^^^^ .. java:method:: public TransactionStage getTransactionStage() :outertype: ScheduledJob Return the state of the inner Job. hashCode ^^^^^^^^ .. java:method:: @Override public int hashCode() :outertype: ScheduledJob pause ^^^^^ .. java:method:: void pause() :outertype: ScheduledJob run ^^^ .. java:method:: public void run() :outertype: ScheduledJob skip ^^^^ .. java:method:: public boolean skip() :outertype: ScheduledJob toString ^^^^^^^^ .. java:method:: @Override public String toString() :outertype: ScheduledJob unpause ^^^^^^^ .. java:method:: void unpause() :outertype: ScheduledJob