public interface Job
Scheduler
.
When a JobDescription
is submitted to a Scheduler
using
Jobs.submitJob
, a Job
is returned. This Job
can be
used to retrieve the status of the job using Jobs.getJobStatus
, cancel the job using
Jobs.cancelJob
, or wait until the job terminates using
Jobs.waitUntilDone
.
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getIdentifier()
Returns the identifier that was assigned to this job by the scheduler.
|
JobDescription |
getJobDescription()
Returns the
JobDescription that was used to create this Job. |
Scheduler |
getScheduler()
Returns the
Scheduler that was used to create this Job. |
boolean |
isInteractive()
Returns if this is an interactive job.
|
boolean |
isOnline()
Returns if this is an online job.
|
JobDescription getJobDescription()
JobDescription
that was used to create this Job.Scheduler getScheduler()
Scheduler
that was used to create this Job.java.lang.String getIdentifier()
boolean isInteractive()
boolean isOnline()