Package org.pentaho.platform.api.engine
Interface IScheduledJob
public interface IScheduledJob
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intAScheduledJobarrives at the blocked state when the job that it is associated with is aStatefulJoband it is currently executing.static final intThe trigger has no remaining fire-times in its schedule.static final intAScheduledJobarrives at the error state when the scheduler attempts to fire it, but cannot due to an error creating and executing its related job.static final intIndicates that theScheduledJobdoes not exist.static final intstatic final int -
Method Summary
Modifier and TypeMethodDescriptionint
-
Field Details
-
STATE_NORMAL
static final int STATE_NORMAL- See Also:
-
STATE_PAUSED
static final int STATE_PAUSED- See Also:
-
STATE_COMPLETE
static final int STATE_COMPLETEThe trigger has no remaining fire-times in its schedule.- See Also:
-
STATE_ERROR
static final int STATE_ERRORAScheduledJobarrives at the error state when the scheduler attempts to fire it, but cannot due to an error creating and executing its related job. Often this is due to theJob's class not existing in the classpath.When the ScheduledJob is in the error state, the scheduler will make no attempts to fire it.
- See Also:
-
STATE_BLOCKED
static final int STATE_BLOCKEDAScheduledJobarrives at the blocked state when the job that it is associated with is aStatefulJoband it is currently executing.- See Also:
-
StatefulJob- Constant Field Values
-
STATE_NONE
static final int STATE_NONEIndicates that the
ScheduledJobdoes not exist.- See Also:
-
-
Method Details