|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Trigger in org.quartz |
Subclasses of Trigger in org.quartz | |
class |
CronTrigger
A concrete that is used to fire a
at given moments in time, defined with Unix 'cron-like' definitions. |
class |
SimpleTrigger
A concrete that is used to fire a
at a given moment in time, and optionally repeated at a specified interval. |
class |
UICronTrigger
A concrete that is used to fire a
at given moments in time, defined with Unix 'cron-like' definitions. |
Methods in org.quartz that return Trigger | |
Trigger[] |
Scheduler.getTriggersOfJob(java.lang.String jobName,
java.lang.String groupName)
Get all s that are associated with the
identified . |
Trigger |
Scheduler.getTrigger(java.lang.String triggerName,
java.lang.String triggerGroup)
Get the instance with the given name and
group. |
Trigger |
JobExecutionContext.getTrigger()
Get a handle to the Trigger instance that fired the
Job . |
Methods in org.quartz with parameters of type Trigger | |
java.util.Date |
Scheduler.scheduleJob(JobDetail jobDetail,
Trigger trigger)
Add the given to the
Scheduler, and associate the given with
it. |
java.util.Date |
Scheduler.scheduleJob(Trigger trigger)
Schedule the given with the
Job identified by the Trigger 's settings. |
java.util.Date |
Scheduler.rescheduleJob(java.lang.String triggerName,
java.lang.String groupName,
Trigger newTrigger)
Remove (delete) the with the
given name, and store the new given one - which must be associated
with the same job - however, the new trigger need not have the same
name as the old trigger. |
void |
SchedulerListener.jobScheduled(Trigger trigger)
Called by the when a
is scheduled. |
void |
SchedulerListener.triggerFinalized(Trigger trigger)
Called by the when a
has reached the condition in which it will never fire again. |
void |
TriggerListener.triggerFired(Trigger trigger,
JobExecutionContext context)
Called by the when a
has fired, and it's associated
is about to be executed. |
boolean |
TriggerListener.vetoJobExecution(Trigger trigger,
JobExecutionContext context)
Called by the when a
has fired, and it's associated
is about to be executed. |
void |
TriggerListener.triggerMisfired(Trigger trigger)
Called by the when a
has misfired. |
void |
TriggerListener.triggerComplete(Trigger trigger,
JobExecutionContext context,
int triggerInstructionCode)
Called by the when a
has fired, it's associated
has been executed, and it's triggered(xx) method has been
called. |
Constructors in org.quartz with parameters of type Trigger | |
ObjectAlreadyExistsException(Trigger offendingTrigger)
Create a ObjectAlreadyExistsException and auto-generate a
message using the name/group from the given Trigger . |
Uses of Trigger in org.quartz.core |
Methods in org.quartz.core that return Trigger | |
Trigger[] |
QuartzScheduler.getTriggersOfJob(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
Get all s that are associated with the
identified . |
Trigger |
QuartzScheduler.getTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String triggerGroup)
Get the instance with the given name and
group. |
Trigger[] |
RemotableQuartzScheduler.getTriggersOfJob(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
|
Trigger |
RemotableQuartzScheduler.getTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String triggerGroup)
|
Methods in org.quartz.core with parameters of type Trigger | |
java.util.Date |
QuartzScheduler.scheduleJob(SchedulingContext ctxt,
JobDetail jobDetail,
Trigger trigger)
Add the identified by the given
to the Scheduler, and
associate the given with it. |
java.util.Date |
QuartzScheduler.scheduleJob(SchedulingContext ctxt,
Trigger trigger)
Schedule the given with the
Job identified by the Trigger 's settings. |
java.util.Date |
QuartzScheduler.rescheduleJob(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName,
Trigger newTrigger)
Remove (delete) the with the
given name, and store the new given one - which must be associated
with the same job. |
protected void |
QuartzScheduler.notifyJobStoreJobComplete(SchedulingContext ctxt,
Trigger trigger,
JobDetail detail,
int instCode)
|
void |
QuartzScheduler.notifyTriggerListenersMisfired(Trigger trigger)
|
void |
QuartzScheduler.notifySchedulerListenersSchduled(Trigger trigger)
|
void |
QuartzScheduler.notifySchedulerListenersFinalized(Trigger trigger)
|
boolean |
JobRunShell.completeTriggerRetryLoop(Trigger trigger,
JobDetail jobDetail,
int instCode)
|
void |
SchedulerSignalerImpl.notifyTriggerListenersMisfired(Trigger trigger)
|
java.util.Date |
RemotableQuartzScheduler.scheduleJob(SchedulingContext ctxt,
JobDetail jobDetail,
Trigger trigger)
|
java.util.Date |
RemotableQuartzScheduler.scheduleJob(SchedulingContext ctxt,
Trigger trigger)
|
java.util.Date |
RemotableQuartzScheduler.rescheduleJob(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName,
Trigger newTrigger)
|
void |
QuartzSchedulerThread.releaseTriggerRetryLoop(Trigger trigger)
|
Uses of Trigger in org.quartz.examples |
Methods in org.quartz.examples with parameters of type Trigger | |
void |
DumbTriggerListener.triggerFired(Trigger trigger,
JobExecutionContext context)
|
boolean |
DumbTriggerListener.vetoJobExecution(Trigger trigger,
JobExecutionContext context)
|
void |
DumbTriggerListener.triggerMisfired(Trigger trigger)
|
void |
DumbTriggerListener.triggerComplete(Trigger trigger,
JobExecutionContext context,
int triggerInstructionCode)
|
Uses of Trigger in org.quartz.helpers |
Methods in org.quartz.helpers that return Trigger | |
static Trigger |
TriggerUtils.makeDailyTrigger(int hour,
int minute)
Make a trigger that will fire every day at the given time. |
static Trigger |
TriggerUtils.makeWeeklyTrigger(int dayOfWeek,
int hour,
int minute)
Make a trigger that will fire every day at the given time. |
static Trigger |
TriggerUtils.makeMonthlyTrigger(int dayOfMonth,
int hour,
int minute)
Make a trigger that will fire every day at the given time. |
static Trigger |
TriggerUtils.makeSecondlyTrigger()
Make a trigger that will fire every second, indefinitely. |
static Trigger |
TriggerUtils.makeSecondlyTrigger(int intervalInSeconds)
Make a trigger that will fire every N seconds, indefinitely. |
static Trigger |
TriggerUtils.makeSecondlyTrigger(int intervalInSeconds,
int repeatCount)
Make a trigger that will fire every N seconds, with the given number of repeats. |
static Trigger |
TriggerUtils.makeMinutelyTrigger()
Make a trigger that will fire every minute, indefinitely. |
static Trigger |
TriggerUtils.makeMinutelyTrigger(int intervalInMinutes)
Make a trigger that will fire every N minutes, indefinitely. |
static Trigger |
TriggerUtils.makeMinutelyTrigger(int intervalInMinutes,
int repeatCount)
Make a trigger that will fire every N minutes, with the given number of repeats. |
static Trigger |
TriggerUtils.makeHourlyTrigger()
Make a trigger that will fire every hour, indefinitely. |
static Trigger |
TriggerUtils.makeHourlyTrigger(int intervalInHours)
Make a trigger that will fire every N hours, indefinitely. |
static Trigger |
TriggerUtils.makeHourlyTrigger(int intervalInHours,
int repeatCount)
Make a trigger that will fire every N hours, with the given number of repeats. |
Methods in org.quartz.helpers with parameters of type Trigger | |
static void |
TriggerUtils.setTriggerIdentity(Trigger trig,
java.lang.String name)
Set the given Trigger 's name to the given value, and its
group to the default group (Scheduler.DEFAULT_GROUP ). |
static void |
TriggerUtils.setTriggerIdentity(Trigger trig,
java.lang.String name,
java.lang.String group)
Set the given Trigger 's name to the given value, and its
group to the given group. |
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 Trigger in org.quartz.impl |
Methods in org.quartz.impl that return Trigger | |
Trigger[] |
RemoteScheduler.getTriggersOfJob(java.lang.String jobName,
java.lang.String groupName)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
Trigger |
RemoteScheduler.getTrigger(java.lang.String triggerName,
java.lang.String triggerGroup)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
Trigger[] |
StdScheduler.getTriggersOfJob(java.lang.String jobName,
java.lang.String groupName)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
Trigger |
StdScheduler.getTrigger(java.lang.String triggerName,
java.lang.String triggerGroup)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
Methods in org.quartz.impl with parameters of type Trigger | |
java.util.Date |
RemoteScheduler.scheduleJob(JobDetail jobDetail,
Trigger trigger)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
java.util.Date |
RemoteScheduler.scheduleJob(Trigger trigger)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
java.util.Date |
RemoteScheduler.rescheduleJob(java.lang.String triggerName,
java.lang.String groupName,
Trigger newTrigger)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
void |
QuartzServer.jobScheduled(Trigger trigger)
Called by the when a
is scheduled. |
void |
QuartzServer.triggerFinalized(Trigger trigger)
Called by the when a
has reached the condition in which it will never fire again. |
java.util.Date |
StdScheduler.scheduleJob(JobDetail jobDetail,
Trigger trigger)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
java.util.Date |
StdScheduler.scheduleJob(Trigger trigger)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
java.util.Date |
StdScheduler.rescheduleJob(java.lang.String triggerName,
java.lang.String groupName,
Trigger newTrigger)
Calls the equivalent method on the 'proxied' QuartzScheduler ,
passing the SchedulingContext associated with this
instance. |
Uses of Trigger in org.quartz.impl.jdbcjobstore |
Methods in org.quartz.impl.jdbcjobstore that return Trigger | |
protected Trigger |
JobStoreSupport.retrieveTrigger(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
|
protected Trigger[] |
JobStoreSupport.getTriggersForJob(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
|
protected Trigger |
JobStoreSupport.acquireNextTrigger(java.sql.Connection conn,
SchedulingContext ctxt)
|
Trigger[] |
DriverDelegate.selectTriggersForRecoveringJobs(java.sql.Connection conn)
Select all of the triggers for jobs that are requesting recovery. |
Trigger[] |
DriverDelegate.selectTriggersForJob(java.sql.Connection conn,
java.lang.String jobName,
java.lang.String groupName)
Select the triggers for a job |
Trigger[] |
DriverDelegate.selectTriggersForCalendar(java.sql.Connection conn,
java.lang.String calName)
Select the triggers for a calendar |
Trigger |
DriverDelegate.selectTrigger(java.sql.Connection conn,
java.lang.String triggerName,
java.lang.String groupName)
Select a trigger. |
Trigger[] |
StdJDBCDelegate.selectTriggersForRecoveringJobs(java.sql.Connection conn)
Select all of the triggers for jobs that are requesting recovery. |
Trigger[] |
StdJDBCDelegate.selectTriggersForJob(java.sql.Connection conn,
java.lang.String jobName,
java.lang.String groupName)
Select the triggers for a job |
Trigger[] |
StdJDBCDelegate.selectTriggersForCalendar(java.sql.Connection conn,
java.lang.String calName)
|
Trigger |
StdJDBCDelegate.selectTrigger(java.sql.Connection conn,
java.lang.String triggerName,
java.lang.String groupName)
Select a trigger. |
Trigger |
JobStoreCMT.retrieveTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
Retrieve the given . |
Trigger[] |
JobStoreCMT.getTriggersForJob(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
Get all of the Triggers that are associated to the given Job. |
Trigger |
JobStoreCMT.acquireNextTrigger(SchedulingContext ctxt)
Get a handle to the next trigger to be fired, and mark it as 'reserved' by the calling scheduler. |
Trigger |
JobStoreTX.retrieveTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
Retrieve the given . |
Trigger[] |
JobStoreTX.getTriggersForJob(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
Get all of the Triggers that are associated to the given Job. |
Trigger |
JobStoreTX.acquireNextTrigger(SchedulingContext ctxt)
Get a handle to the next trigger to be fired, and mark it as 'reserved' by the calling scheduler. |
Trigger[] |
DB2v7Delegate.selectTriggersForRecoveringJobs(java.sql.Connection conn)
|
Methods in org.quartz.impl.jdbcjobstore with parameters of type Trigger | |
protected void |
JobStoreSupport.storeTrigger(java.sql.Connection conn,
SchedulingContext ctxt,
Trigger newTrigger,
JobDetail job,
boolean replaceExisting,
java.lang.String state,
boolean forceState,
boolean recovering)
Insert or update a trigger. |
protected boolean |
JobStoreSupport.replaceTrigger(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName,
Trigger newTrigger)
|
protected void |
JobStoreSupport.releaseAcquiredTrigger(java.sql.Connection conn,
SchedulingContext ctxt,
Trigger trigger)
|
protected TriggerFiredBundle |
JobStoreSupport.triggerFired(java.sql.Connection conn,
SchedulingContext ctxt,
Trigger trigger)
|
protected void |
JobStoreSupport.triggeredJobComplete(java.sql.Connection conn,
SchedulingContext ctxt,
Trigger trigger,
JobDetail jobDetail,
int triggerInstCode)
|
int |
DriverDelegate.insertTrigger(java.sql.Connection conn,
Trigger trigger,
java.lang.String state,
JobDetail jobDetail)
Insert the base trigger data. |
int |
DriverDelegate.insertBlobTrigger(java.sql.Connection conn,
Trigger trigger)
Insert the blob trigger data. |
int |
DriverDelegate.updateTrigger(java.sql.Connection conn,
Trigger trigger,
java.lang.String state,
JobDetail jobDetail)
Update the base trigger data. |
int |
DriverDelegate.updateBlobTrigger(java.sql.Connection conn,
Trigger trigger)
Update the blob trigger data. |
int |
DriverDelegate.insertTriggerListener(java.sql.Connection conn,
Trigger trigger,
java.lang.String listener)
Associate a listener with the given trigger. |
int |
DriverDelegate.insertFiredTrigger(java.sql.Connection conn,
Trigger trigger,
java.lang.String state,
JobDetail jobDetail)
Insert a fired trigger. |
int |
StdJDBCDelegate.insertTrigger(java.sql.Connection conn,
Trigger trigger,
java.lang.String state,
JobDetail jobDetail)
Insert the base trigger data. |
int |
StdJDBCDelegate.insertBlobTrigger(java.sql.Connection conn,
Trigger trigger)
Insert the blob trigger data. |
int |
StdJDBCDelegate.updateTrigger(java.sql.Connection conn,
Trigger trigger,
java.lang.String state,
JobDetail jobDetail)
Update the base trigger data. |
int |
StdJDBCDelegate.updateBlobTrigger(java.sql.Connection conn,
Trigger trigger)
Update the blob trigger data. |
int |
StdJDBCDelegate.insertTriggerListener(java.sql.Connection conn,
Trigger trigger,
java.lang.String listener)
Associate a listener with the given trigger. |
int |
StdJDBCDelegate.insertFiredTrigger(java.sql.Connection conn,
Trigger trigger,
java.lang.String state,
JobDetail job)
Insert a fired trigger. |
void |
JobStoreCMT.storeJobAndTrigger(SchedulingContext ctxt,
JobDetail newJob,
Trigger newTrigger)
Store the given and . |
void |
JobStoreCMT.storeTrigger(SchedulingContext ctxt,
Trigger newTrigger,
boolean replaceExisting)
Store the given . |
boolean |
JobStoreCMT.replaceTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName,
Trigger newTrigger)
|
void |
JobStoreCMT.releaseAcquiredTrigger(SchedulingContext ctxt,
Trigger trigger)
Inform the JobStore that the scheduler no longer plans to
fire the given Trigger , that it had previously acquired
(reserved). |
TriggerFiredBundle |
JobStoreCMT.triggerFired(SchedulingContext ctxt,
Trigger trigger)
Inform the JobStore that the scheduler is now firing the
given Trigger (executing its associated Job ),
that it had previously acquired (reserved). |
void |
JobStoreCMT.triggeredJobComplete(SchedulingContext ctxt,
Trigger trigger,
JobDetail jobDetail,
int triggerInstCode)
Inform the JobStore that the scheduler has completed the
firing of the given Trigger (and the execution its
associated Job ), and that the
in the given JobDetail should be updated if the Job
is stateful. |
void |
JobStoreTX.storeJobAndTrigger(SchedulingContext ctxt,
JobDetail newJob,
Trigger newTrigger)
Store the given and . |
void |
JobStoreTX.storeTrigger(SchedulingContext ctxt,
Trigger newTrigger,
boolean replaceExisting)
Store the given . |
boolean |
JobStoreTX.replaceTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName,
Trigger newTrigger)
|
void |
JobStoreTX.releaseAcquiredTrigger(SchedulingContext ctxt,
Trigger trigger)
Inform the JobStore that the scheduler no longer plans to
fire the given Trigger , that it had previously acquired
(reserved). |
TriggerFiredBundle |
JobStoreTX.triggerFired(SchedulingContext ctxt,
Trigger trigger)
Inform the JobStore that the scheduler is now firing the
given Trigger (executing its associated Job ),
that it had previously acquired (reserved). |
void |
JobStoreTX.triggeredJobComplete(SchedulingContext ctxt,
Trigger trigger,
JobDetail jobDetail,
int triggerInstCode)
Inform the JobStore that the scheduler has completed the
firing of the given Trigger (and the execution its
associated Job ), and that the
in the given JobDetail should be updated if the Job
is stateful. |
int |
DB2v7Delegate.insertTrigger(java.sql.Connection conn,
Trigger trigger,
java.lang.String state,
JobDetail jobDetail)
|
int |
DB2v7Delegate.updateTrigger(java.sql.Connection conn,
Trigger trigger,
java.lang.String state,
JobDetail jobDetail)
|
int |
DB2v7Delegate.insertFiredTrigger(java.sql.Connection conn,
Trigger trigger,
java.lang.String state,
JobDetail job)
|
Uses of Trigger in org.quartz.plugins.history |
Methods in org.quartz.plugins.history with parameters of type Trigger | |
void |
LoggingTriggerHistoryPlugin.triggerFired(Trigger trigger,
JobExecutionContext context)
|
void |
LoggingTriggerHistoryPlugin.triggerMisfired(Trigger trigger)
|
void |
LoggingTriggerHistoryPlugin.triggerComplete(Trigger trigger,
JobExecutionContext context,
int triggerInstructionCode)
|
boolean |
LoggingTriggerHistoryPlugin.vetoJobExecution(Trigger trigger,
JobExecutionContext context)
|
Uses of Trigger in org.quartz.simpl |
Methods in org.quartz.simpl that return Trigger | |
Trigger |
RAMJobStore.retrieveTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
Retrieve the given . |
Trigger[] |
RAMJobStore.getTriggersForJob(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
Get all of the Triggers that are associated to the given Job. |
Trigger |
RAMJobStore.acquireNextTrigger(SchedulingContext ctxt)
Get a handle to the next trigger to be fired, and mark it as 'reserved' by the calling scheduler. |
Methods in org.quartz.simpl with parameters of type Trigger | |
void |
RAMJobStore.storeJobAndTrigger(SchedulingContext ctxt,
JobDetail newJob,
Trigger newTrigger)
Store the given and . |
void |
RAMJobStore.storeTrigger(SchedulingContext ctxt,
Trigger newTrigger,
boolean replaceExisting)
Store the given . |
boolean |
RAMJobStore.replaceTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName,
Trigger newTrigger)
|
void |
RAMJobStore.releaseAcquiredTrigger(SchedulingContext ctxt,
Trigger trigger)
Inform the JobStore that the scheduler no longer plans to
fire the given Trigger , that it had previously acquired
(reserved). |
TriggerFiredBundle |
RAMJobStore.triggerFired(SchedulingContext ctxt,
Trigger trigger)
Inform the JobStore that the scheduler is now firing the
given Trigger (executing its associated Job ),
that it had previously acquired (reserved). |
void |
RAMJobStore.triggeredJobComplete(SchedulingContext ctxt,
Trigger trigger,
JobDetail jobDetail,
int triggerInstCode)
Inform the JobStore that the scheduler has completed the
firing of the given Trigger (and the execution its
associated Job ), and that the
in the given JobDetail should be updated if the Job
is stateful. |
Uses of Trigger in org.quartz.spi |
Methods in org.quartz.spi that return Trigger | |
Trigger |
JobStore.retrieveTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
Retrieve the given . |
Trigger[] |
JobStore.getTriggersForJob(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
Get all of the Triggers that are associated to the given Job. |
Trigger |
JobStore.acquireNextTrigger(SchedulingContext ctxt)
Get a handle to the next trigger to be fired, and mark it as 'reserved' by the calling scheduler. |
Trigger |
TriggerFiredBundle.getTrigger()
|
Methods in org.quartz.spi with parameters of type Trigger | |
void |
JobStore.storeJobAndTrigger(SchedulingContext ctxt,
JobDetail newJob,
Trigger newTrigger)
Store the given and . |
void |
JobStore.storeTrigger(SchedulingContext ctxt,
Trigger newTrigger,
boolean replaceExisting)
Store the given . |
boolean |
JobStore.replaceTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName,
Trigger newTrigger)
Remove (delete) the with the
given name, and store the new given one - which must be associated
with the same job. |
void |
JobStore.releaseAcquiredTrigger(SchedulingContext ctxt,
Trigger trigger)
Inform the JobStore that the scheduler no longer plans to
fire the given Trigger , that it had previously acquired
(reserved). |
TriggerFiredBundle |
JobStore.triggerFired(SchedulingContext ctxt,
Trigger trigger)
Inform the JobStore that the scheduler is now firing the
given Trigger (executing its associated Job ),
that it had previously acquired (reserved). |
void |
JobStore.triggeredJobComplete(SchedulingContext ctxt,
Trigger trigger,
JobDetail jobDetail,
int triggerInstCode)
Inform the JobStore that the scheduler has completed the
firing of the given Trigger (and the execution its
associated Job ), and that the
in the given JobDetail should be updated if the Job
is stateful. |
void |
SchedulerSignaler.notifyTriggerListenersMisfired(Trigger trigger)
|
Constructors in org.quartz.spi with parameters of type Trigger | |
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 Trigger in org.quartz.xml |
Methods in org.quartz.xml with parameters of type Trigger | |
void |
JobSchedulingBundle.addTrigger(Trigger trigger)
|
void |
JobSchedulingBundle.removeTrigger(Trigger trigger)
|
|
Quartz Project Page | ||||||||||
PREV NEXT | FRAMES NO FRAMES |