|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Calendar in org.quartz |
Methods in org.quartz that return Calendar | |
Calendar |
Calendar.getBaseCalendar()
Get the base calendar. |
Calendar |
Scheduler.getCalendar(java.lang.String calName)
Get the instance with the given name. |
Calendar |
JobExecutionContext.getCalendar()
Get a handle to the Calendar referenced by the Trigger
instance that fired the Job . |
Methods in org.quartz with parameters of type Calendar | |
void |
Calendar.setBaseCalendar(Calendar baseCalendar)
Set a new base calendar or remove the existing one. |
void |
Scheduler.addCalendar(java.lang.String calName,
Calendar calendar,
boolean replace,
boolean updateTriggers)
Add (register) the given Calendar to the Scheduler. |
void |
UICronTrigger.updateAfterMisfire(Calendar cal)
|
void |
UICronTrigger.triggered(Calendar calendar)
Called when the has decided to 'fire'
the trigger (execute the associated Job ), in order to
give the Trigger a chance to update itself for its next
triggering (if any). |
void |
UICronTrigger.updateWithNewCalendar(Calendar calendar,
long misfireThreshold)
|
java.util.Date |
UICronTrigger.computeFirstFireTime(Calendar calendar)
Called by the scheduler at the time a Trigger is first
added to the scheduler, in order to have the Trigger
compute its first fire time, based on any associated calendar. |
abstract void |
Trigger.triggered(Calendar calendar)
This method should not be used by the Quartz client. |
abstract java.util.Date |
Trigger.computeFirstFireTime(Calendar calendar)
This method should not be used by the Quartz client. |
abstract void |
Trigger.updateAfterMisfire(Calendar cal)
This method should not be used by the Quartz client. |
abstract void |
Trigger.updateWithNewCalendar(Calendar cal,
long misfireThreshold)
This method should not be used by the Quartz client. |
void |
SimpleTrigger.updateAfterMisfire(Calendar cal)
Updates the SimpleTrigger 's state based on the
MISFIRE_INSTRUCTION_XXX that was selected when the SimpleTrigger
was created. |
void |
SimpleTrigger.triggered(Calendar calendar)
Called when the has decided to 'fire'
the trigger (execute the associated Job ), in order to
give the Trigger a chance to update itself for its next
triggering (if any). |
void |
SimpleTrigger.updateWithNewCalendar(Calendar calendar,
long misfireThreshold)
|
java.util.Date |
SimpleTrigger.computeFirstFireTime(Calendar calendar)
Called by the scheduler at the time a Trigger is first
added to the scheduler, in order to have the Trigger
compute its first fire time, based on any associated calendar. |
void |
CronTrigger.updateAfterMisfire(Calendar cal)
Updates the CronTrigger 's state based on the
MISFIRE_INSTRUCTION_XXX that was selected when the SimpleTrigger
was created. |
void |
CronTrigger.triggered(Calendar calendar)
Called when the has decided to 'fire'
the trigger (execute the associated Job ), in order to
give the Trigger a chance to update itself for its next
triggering (if any). |
void |
CronTrigger.updateWithNewCalendar(Calendar calendar,
long misfireThreshold)
|
java.util.Date |
CronTrigger.computeFirstFireTime(Calendar calendar)
Called by the scheduler at the time a Trigger is first
added to the scheduler, in order to have the Trigger
compute its first fire time, based on any associated calendar. |
Uses of Calendar in org.quartz.core |
Methods in org.quartz.core that return Calendar | |
Calendar |
QuartzScheduler.getCalendar(SchedulingContext ctxt,
java.lang.String calName)
Get the instance with the given name. |
Calendar |
RemotableQuartzScheduler.getCalendar(SchedulingContext ctxt,
java.lang.String calName)
|
Methods in org.quartz.core with parameters of type Calendar | |
void |
QuartzScheduler.addCalendar(SchedulingContext ctxt,
java.lang.String calName,
Calendar calendar,
boolean replace,
boolean updateTriggers)
Add (register) the given Calendar to the Scheduler. |
void |
RemotableQuartzScheduler.addCalendar(SchedulingContext ctxt,
java.lang.String calName,
Calendar calendar,
boolean replace,
boolean updateTriggers)
|
Uses of Calendar in org.quartz.helpers |
Methods in org.quartz.helpers with parameters of type Calendar | |
static java.util.List |
TriggerUtils.computeFireTimes(Trigger trigg,
Calendar cal,
int numTimes)
Returns a list of Dates that are the next fire times of a Trigger . |
static java.util.List |
TriggerUtils.computeFireTimesBetween(Trigger trigg,
Calendar cal,
java.util.Date from,
java.util.Date to)
Returns a list of Dates that are the next fire times of a Trigger
that fall within the given date range. |
Uses of Calendar in org.quartz.impl |
Methods in org.quartz.impl that return Calendar | |
Calendar |
RemoteScheduler.getCalendar(java.lang.String calName)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
Calendar |
StdScheduler.getCalendar(java.lang.String calName)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
Methods in org.quartz.impl with parameters of type Calendar | |
void |
RemoteScheduler.addCalendar(java.lang.String calName,
Calendar calendar,
boolean replace,
boolean updateTriggers)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
void |
StdScheduler.addCalendar(java.lang.String calName,
Calendar calendar,
boolean replace,
boolean updateTriggers)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
Uses of Calendar in org.quartz.impl.calendar |
Classes in org.quartz.impl.calendar that implement Calendar | |
class |
AnnualCalendar
This implementation of the Calendar excludes a set of days of the year. |
class |
BaseCalendar
This implementation of the Calendar may be used (you don't have to) as a base class for more sophisticated one's. |
class |
HolidayCalendar
This implementation of the Calendar stores a list of holidays (full days that are excluded from scheduling). |
class |
MonthlyCalendar
This implementation of the Calendar excludes a set of days of the month. |
class |
WeeklyCalendar
This implementation of the Calendar excludes a set of days of the week. |
Methods in org.quartz.impl.calendar that return Calendar | |
Calendar |
BaseCalendar.getBaseCalendar()
Get the base calendar. |
Methods in org.quartz.impl.calendar with parameters of type Calendar | |
void |
BaseCalendar.setBaseCalendar(Calendar baseCalendar)
Set a new base calendar or remove the existing one |
Constructors in org.quartz.impl.calendar with parameters of type Calendar | |
HolidayCalendar(Calendar baseCalendar)
Constructor |
|
WeeklyCalendar(Calendar baseCalendar)
Constructor |
|
MonthlyCalendar(Calendar baseCalendar)
Constructor |
|
AnnualCalendar(Calendar baseCalendar)
Constructor |
|
BaseCalendar(Calendar baseCalendar)
Constructor |
Uses of Calendar in org.quartz.impl.jdbcjobstore |
Methods in org.quartz.impl.jdbcjobstore that return Calendar | |
protected Calendar |
JobStoreSupport.retrieveCalendar(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String calName)
|
Calendar |
DriverDelegate.selectCalendar(java.sql.Connection conn,
java.lang.String calendarName)
Select a calendar. |
Calendar |
StdJDBCDelegate.selectCalendar(java.sql.Connection conn,
java.lang.String calendarName)
Select a calendar. |
Calendar |
JobStoreCMT.retrieveCalendar(SchedulingContext ctxt,
java.lang.String calName)
Retrieve the given . |
Calendar |
JobStoreTX.retrieveCalendar(SchedulingContext ctxt,
java.lang.String calName)
Retrieve the given . |
Methods in org.quartz.impl.jdbcjobstore with parameters of type Calendar | |
protected void |
JobStoreSupport.storeCalendar(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String calName,
Calendar calendar,
boolean replaceExisting,
boolean updateTriggers)
|
int |
DriverDelegate.insertCalendar(java.sql.Connection conn,
java.lang.String calendarName,
Calendar calendar)
Insert a new calendar. |
int |
DriverDelegate.updateCalendar(java.sql.Connection conn,
java.lang.String calendarName,
Calendar calendar)
Update a calendar. |
int |
StdJDBCDelegate.insertCalendar(java.sql.Connection conn,
java.lang.String calendarName,
Calendar calendar)
Insert a new calendar. |
int |
StdJDBCDelegate.updateCalendar(java.sql.Connection conn,
java.lang.String calendarName,
Calendar calendar)
Update a calendar. |
void |
JobStoreCMT.storeCalendar(SchedulingContext ctxt,
java.lang.String calName,
Calendar calendar,
boolean replaceExisting,
boolean updateTriggers)
Store the given . |
void |
JobStoreTX.storeCalendar(SchedulingContext ctxt,
java.lang.String calName,
Calendar calendar,
boolean replaceExisting,
boolean updateTriggers)
Store the given . |
int |
DB2v7Delegate.insertCalendar(java.sql.Connection conn,
java.lang.String calendarName,
Calendar calendar)
|
int |
DB2v7Delegate.updateCalendar(java.sql.Connection conn,
java.lang.String calendarName,
Calendar calendar)
|
int |
PointbaseDelegate.insertCalendar(java.sql.Connection conn,
java.lang.String calendarName,
Calendar calendar)
Insert a new calendar. |
int |
PointbaseDelegate.updateCalendar(java.sql.Connection conn,
java.lang.String calendarName,
Calendar calendar)
Update a calendar. |
Uses of Calendar in org.quartz.impl.jdbcjobstore.oracle |
Methods in org.quartz.impl.jdbcjobstore.oracle with parameters of type Calendar | |
int |
OracleDelegate.insertCalendar(java.sql.Connection conn,
java.lang.String calendarName,
Calendar calendar)
|
int |
OracleDelegate.updateCalendar(java.sql.Connection conn,
java.lang.String calendarName,
Calendar calendar)
|
Uses of Calendar in org.quartz.simpl |
Methods in org.quartz.simpl that return Calendar | |
Calendar |
RAMJobStore.retrieveCalendar(SchedulingContext ctxt,
java.lang.String calName)
Retrieve the given . |
Methods in org.quartz.simpl with parameters of type Calendar | |
void |
RAMJobStore.storeCalendar(SchedulingContext ctxt,
java.lang.String name,
Calendar calendar,
boolean replaceExisting,
boolean updateTriggers)
Store the given . |
Uses of Calendar in org.quartz.spi |
Methods in org.quartz.spi that return Calendar | |
Calendar |
JobStore.retrieveCalendar(SchedulingContext ctxt,
java.lang.String calName)
Retrieve the given . |
Calendar |
TriggerFiredBundle.getCalendar()
|
Methods in org.quartz.spi with parameters of type Calendar | |
void |
JobStore.storeCalendar(SchedulingContext ctxt,
java.lang.String name,
Calendar calendar,
boolean replaceExisting,
boolean updateTriggers)
Store the given . |
Constructors in org.quartz.spi with parameters of type Calendar | |
TriggerFiredBundle(JobDetail job,
Trigger trigger,
Calendar cal,
boolean jobIsRecovering,
java.util.Date fireTime,
java.util.Date scheduledFireTime,
java.util.Date prevFireTime,
java.util.Date nextFireTime)
|
Uses of Calendar in org.quartz.xml |
Classes in org.quartz.xml that implement Calendar | |
class |
CalendarBundle
Wraps a Calendar . |
Fields in org.quartz.xml declared as Calendar | |
protected Calendar |
CalendarBundle.calendar
|
Methods in org.quartz.xml that return Calendar | |
Calendar |
CalendarBundle.getCalendar()
|
Calendar |
CalendarBundle.getBaseCalendar()
|
Methods in org.quartz.xml with parameters of type Calendar | |
void |
CalendarBundle.setCalendar(Calendar calendar)
|
void |
CalendarBundle.setBaseCalendar(Calendar baseCalendar)
|
|
Quartz Project Page | ||||||||||
PREV NEXT | FRAMES NO FRAMES |