Uses of Class
com.atlassian.scheduler.config.JobId

Packages that use JobId
com.atlassian.scheduler Major component interfaces and supporting classes for the atlassian-scheduler API. 
com.atlassian.scheduler.config API classes related to the configuration of scheduled jobs. 
com.atlassian.scheduler.status API classes related to the current status of a job or the results of running one. 
 

Uses of JobId in com.atlassian.scheduler
 

Methods in com.atlassian.scheduler that return JobId
 JobId JobRunnerRequest.getJobId()
          Returns the job ID that was used to schedule this job.
 JobId SchedulerService.scheduleJobWithGeneratedId(JobConfig jobConfig)
          Schedules a "dynamic" job by generating a new unique job ID.
 

Methods in com.atlassian.scheduler with parameters of type JobId
 JobDetails SchedulerService.getJobDetails(JobId jobId)
          Retrieves the details for the specified job ID.
 RunDetails SchedulerHistoryService.getLastRunForJob(JobId jobId)
          Returns the result of the most recent attempt to run this job.
 RunDetails SchedulerHistoryService.getLastSuccessfulRunForJob(JobId jobId)
          Returns the result of the most recent successful run of this job.
 void SchedulerService.scheduleJob(JobId jobId, JobConfig jobConfig)
          Schedules a job with the given job ID.
 void SchedulerService.unscheduleJob(JobId jobId)
          Unschedules a previously scheduled job ID.
 

Uses of JobId in com.atlassian.scheduler.config
 

Methods in com.atlassian.scheduler.config that return JobId
static JobId JobId.of(String id)
          Wraps the provided string as a JobId.
 

Methods in com.atlassian.scheduler.config with parameters of type JobId
 int JobId.compareTo(JobId o)
           
 

Uses of JobId in com.atlassian.scheduler.status
 

Methods in com.atlassian.scheduler.status that return JobId
 JobId JobDetails.getJobId()
          Returns the job ID that was used to schedule this job, or the one that was generated for it if the job was scheduled without specifying one.
 



Copyright © 2015 Atlassian. All rights reserved.