|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use JobState | |
---|---|
org.icenigrid.gridsam.core | Package containing the core interfaces defining the JobManager API. |
org.icenigrid.gridsam.core.plugin | Package containing interfaces that define the Service Provider Interface (SPI) of GridSAM. |
org.icenigrid.gridsam.core.plugin.manager | Package containing the default implementation of the DRMConnector and JobManager abstraction. |
org.icenigrid.gridsam.core.plugin.persistence.common | Package containing the implementation classes of the job persistence interfaces. |
org.icenigrid.gridsam.core.plugin.persistence.hibernate | Package containing an implementation of the job persistence API using the Hibernate toolkit over a relational database. |
Uses of JobState in org.icenigrid.gridsam.core |
---|
Fields in org.icenigrid.gridsam.core declared as JobState | |
---|---|
static JobState |
JobState.ACTIVE
The job has received resource, and the application is executing |
static JobState |
JobState.DONE
The job has completed successfully |
static JobState |
JobState.EXECUTED
The job has been executed (i.e. |
static JobState |
JobState.FAILED
The job terminated before completion because of an error, user-triggered cancel, or system-triggered cancel |
static JobState |
JobState.PENDING
The job is waiting for resource to become available in order to run |
static JobState |
JobState.STAGED_IN
The job's data have been staged into the job execution environment |
static JobState |
JobState.STAGED_OUT
The job's data have been staged out from the job execution environment |
static JobState |
JobState.STAGING_IN
The job's data are staging into the job execution environment |
static JobState |
JobState.STAGING_OUT
The job's data are staging out from the job execution environment |
static JobState |
JobState.TERMINATED
The job has been terminated by user |
static JobState |
JobState.TERMINATING
The job is being terminated by user |
static JobState |
JobState.UNDEFINED
The job state is undefined |
Methods in org.icenigrid.gridsam.core that return JobState | |
---|---|
JobState |
JobStage.getState()
get the state |
static JobState |
JobState.parse(java.lang.String pValue)
parse a state value into a JobState object |
Methods in org.icenigrid.gridsam.core with parameters of type JobState | |
---|---|
void |
MutableJobInstance.advanceJobState(JobState pState,
java.lang.String pDescription)
advance the state of this job to pState |
boolean |
JobInstance.isInStage(JobState pState)
test whether the job is currently in the given state |
JobInstance |
JobManager.rerunJob(java.lang.String pJobID,
JobState startState,
org.icenigrid.schema.jsdl.y2005.m11.JobDefinitionDocument pDesc,
boolean pStartSuspend)
Rerun a job from a specified stage and reuse the same working directory. |
void |
JobStage.setState(JobState pState)
set the state |
boolean |
JobInstance.wasInStage(JobState pState)
test whether the job has been in the given state |
Uses of JobState in org.icenigrid.gridsam.core.plugin |
---|
Methods in org.icenigrid.gridsam.core.plugin with parameters of type JobState | |
---|---|
java.util.List |
JobInstanceStore.findJobInstancesByState(JobState pState)
find all known JobInstance which has exactly the given state |
Uses of JobState in org.icenigrid.gridsam.core.plugin.manager |
---|
Methods in org.icenigrid.gridsam.core.plugin.manager with parameters of type JobState | |
---|---|
JobInstance |
DefaultJobManager.rerunJob(java.lang.String pJobID,
JobState startState,
org.icenigrid.schema.jsdl.y2005.m11.JobDefinitionDocument pDesc,
boolean pSuspended)
rerun a job |
Uses of JobState in org.icenigrid.gridsam.core.plugin.persistence.common |
---|
Methods in org.icenigrid.gridsam.core.plugin.persistence.common that return JobState | |
---|---|
JobState |
DefaultJobStage.getState()
get the state |
Methods in org.icenigrid.gridsam.core.plugin.persistence.common with parameters of type JobState | |
---|---|
void |
DefaultMutableJobInstance.addJobStage(JobState pState,
java.lang.String pDescription)
add a job stage |
void |
DefaultMutableJobInstance.advanceJobState(JobState pState,
java.lang.String pDescription)
advance the state of this job to pState |
boolean |
DefaultMutableJobInstance.isInStage(JobState pState)
test whether the job is currently in the given state |
void |
DefaultJobStage.setState(JobState pState)
set the state |
boolean |
DefaultMutableJobInstance.wasInStage(JobState pState)
test whether the job has been in the given state |
Uses of JobState in org.icenigrid.gridsam.core.plugin.persistence.hibernate |
---|
Methods in org.icenigrid.gridsam.core.plugin.persistence.hibernate with parameters of type JobState | |
---|---|
java.util.List |
HibernateJobInstanceStore.findJobInstancesByState(JobState pState)
find all known JobInstance which has exactly the given state |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |