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

Packages that use Schedule
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 Schedule in com.atlassian.scheduler
 

Methods in com.atlassian.scheduler with parameters of type Schedule
 Date SchedulerService.calculateNextRunTime(Schedule schedule)
          Returns the next time that a job with the given schedule would be expected to run.
 

Uses of Schedule in com.atlassian.scheduler.config
 

Methods in com.atlassian.scheduler.config that return Schedule
static Schedule Schedule.forCronExpression(String cronExpression)
          Creates a new schedule for the given cron expression.
static Schedule Schedule.forCronExpression(String cronExpression, TimeZone timeZone)
          Creates a new schedule for the given cron expression.
static Schedule Schedule.forInterval(long intervalInMillis, Date firstRunTime)
          Creates a new schedule that will run periodically with the given interval.
 Schedule JobConfig.getSchedule()
           
static Schedule Schedule.runOnce(Date runTime)
          Creates a new schedule that will run once at the specified time.
 

Methods in com.atlassian.scheduler.config with parameters of type Schedule
 JobConfig JobConfig.withSchedule(Schedule schedule)
          Returns a copy of this job config that will use the specified schedule instead of what it currently uses.
 

Uses of Schedule in com.atlassian.scheduler.status
 

Methods in com.atlassian.scheduler.status that return Schedule
 Schedule JobDetails.getSchedule()
          Returns the schedule that the Job will run under.
 



Copyright © 2015 Atlassian. All rights reserved.