|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.quartz.impl.jdbcjobstore.JobStoreSupport
public abstract class JobStoreSupport
Contains base functionality for JDBC-based JobStore implementations.
Nested Class Summary | |
---|---|
protected static class |
JobStoreSupport.RecoverMisfiredJobsResult
Helper class for returning the composite result of trying to recover misfired jobs. |
protected static interface |
JobStoreSupport.TransactionCallback
Implement this interface to provide the code to execute within the a transaction template. |
protected static interface |
JobStoreSupport.VoidTransactionCallback
Implement this interface to provide the code to execute within the a transaction template that has no return value. |
Field Summary | |
---|---|
protected java.util.HashMap |
calendarCache
|
protected java.lang.Class |
delegateClass
|
protected java.lang.String |
delegateClassName
|
protected java.lang.String |
dsName
|
protected boolean |
firstCheckIn
|
protected java.lang.String |
instanceId
|
protected java.lang.String |
instanceName
|
protected long |
lastCheckin
|
protected static java.lang.String |
LOCK_CALENDAR_ACCESS
|
protected static java.lang.String |
LOCK_JOB_ACCESS
|
protected static java.lang.String |
LOCK_MISFIRE_ACCESS
|
protected static java.lang.String |
LOCK_STATE_ACCESS
|
protected static java.lang.String |
LOCK_TRIGGER_ACCESS
|
protected int |
maxToRecoverAtATime
|
protected java.lang.ThreadLocal<java.lang.Long> |
sigChangeForTxCompletion
|
protected java.lang.String |
tablePrefix
|
protected boolean |
useProperties
|
Constructor Summary | |
---|---|
JobStoreSupport()
|
Method Summary | |
---|---|
protected Trigger |
acquireNextTrigger(java.sql.Connection conn,
SchedulingContext ctxt,
long noLaterThan)
|
Trigger |
acquireNextTrigger(SchedulingContext ctxt,
long noLaterThan)
Get a handle to the next N triggers to be fired, and mark them as 'reserved' by the calling scheduler. |
protected long |
calcFailedIfAfter(SchedulerStateRecord rec)
|
protected boolean |
calendarExists(java.sql.Connection conn,
java.lang.String calName)
|
boolean |
canUseProperties()
Get whether String-only properties will be handled in JobDataMaps. |
protected java.lang.String |
checkBlockedState(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String jobGroupName,
java.lang.String currentState)
Determines if a Trigger for the given job should be blocked. |
protected void |
cleanupConnection(java.sql.Connection conn)
Cleanup the given database connection. |
protected void |
cleanVolatileTriggerAndJobs()
Removes all volatile data. |
protected void |
cleanVolatileTriggerAndJobs(java.sql.Connection conn)
Removes all volatile data. |
protected java.lang.Long |
clearAndGetSignalSchedulingChangeOnTxCompletion()
|
protected void |
closeConnection(java.sql.Connection conn)
Closes the supplied Connection . |
protected java.util.List |
clusterCheckIn(java.sql.Connection conn)
|
protected void |
clusterRecover(java.sql.Connection conn,
java.util.List failedInstances)
|
protected void |
commitConnection(java.sql.Connection conn)
Commit the supplied connection |
protected boolean |
doCheckin()
|
protected JobStoreSupport.RecoverMisfiredJobsResult |
doRecoverMisfires()
|
protected abstract java.lang.Object |
executeInLock(java.lang.String lockName,
JobStoreSupport.TransactionCallback txCallback)
Execute the given callback having aquired the given lock. |
protected void |
executeInLock(java.lang.String lockName,
JobStoreSupport.VoidTransactionCallback txCallback)
Execute the given callback having aquired the given lock. |
protected java.lang.Object |
executeInNonManagedTXLock(java.lang.String lockName,
JobStoreSupport.TransactionCallback txCallback)
Execute the given callback having optionally aquired the given lock. |
protected void |
executeInNonManagedTXLock(java.lang.String lockName,
JobStoreSupport.VoidTransactionCallback txCallback)
Execute the given callback having optionally aquired the given lock. |
java.lang.Object |
executeWithoutLock(JobStoreSupport.TransactionCallback txCallback)
Execute the given callback in a transaction. |
protected java.util.List |
findFailedInstances(java.sql.Connection conn)
Get a list of all scheduler instances in the cluster that may have failed. |
protected java.sql.Connection |
getAttributeRestoringConnection(java.sql.Connection conn)
Wrap the given Connection in a Proxy such that attributes
that might be set will be restored before the connection is closed
(and potentially restored to a pool). |
protected java.lang.String[] |
getCalendarNames(java.sql.Connection conn,
SchedulingContext ctxt)
|
java.lang.String[] |
getCalendarNames(SchedulingContext ctxt)
Get the names of all of the s
in the JobStore . |
protected ClassLoadHelper |
getClassLoadHelper()
|
long |
getClusterCheckinInterval()
Get the frequency (in milliseconds) at which this instance "checks-in" with the other instances of the cluster. |
protected java.sql.Connection |
getConnection()
|
java.lang.String |
getDataSource()
Get the name of the DataSource that should be used for
performing database functions. |
long |
getDbRetryInterval()
|
protected DriverDelegate |
getDelegate()
Get the driver delegate for DB operations. |
boolean |
getDoubleCheckLockMisfireHandler()
Get whether to check to see if there are Triggers that have misfired before actually acquiring the lock to recover them. |
java.lang.String |
getDriverDelegateClass()
Get the JDBC driver delegate class name. |
long |
getEstimatedTimeToReleaseAndAcquireTrigger()
How long (in milliseconds) the JobStore implementation
estimates that it will take to release a trigger and acquire a new one. |
protected java.lang.String |
getFiredTriggerRecordId()
|
java.lang.String |
getInstanceId()
Get the instance Id of the Scheduler (must be unique within a cluster). |
java.lang.String |
getInstanceName()
Get the instance name of the Scheduler (must be unique within this server instance). |
protected java.lang.String[] |
getJobGroupNames(java.sql.Connection conn,
SchedulingContext ctxt)
|
java.lang.String[] |
getJobGroupNames(SchedulingContext ctxt)
Get the names of all of the
groups. |
protected java.lang.String[] |
getJobNames(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String groupName)
|
java.lang.String[] |
getJobNames(SchedulingContext ctxt,
java.lang.String groupName)
Get the names of all of the s that
have the given group name. |
protected Semaphore |
getLockHandler()
|
protected org.slf4j.Logger |
getLog()
|
boolean |
getMakeThreadsDaemons()
Get whether the threads spawned by this JobStore should be marked as daemon. |
int |
getMaxMisfiresToHandleAtATime()
Get the maximum number of misfired triggers that the misfire handling thread will try to recover at one time (within one transaction). |
long |
getMisfireThreshold()
|
protected long |
getMisfireTime()
|
protected abstract java.sql.Connection |
getNonManagedTXConnection()
|
protected int |
getNumberOfCalendars(java.sql.Connection conn,
SchedulingContext ctxt)
|
int |
getNumberOfCalendars(SchedulingContext ctxt)
Get the number of s that are
stored in the JobsStore . |
protected int |
getNumberOfJobs(java.sql.Connection conn,
SchedulingContext ctxt)
|
int |
getNumberOfJobs(SchedulingContext ctxt)
Get the number of s that are
stored in the JobStore . |
protected int |
getNumberOfTriggers(java.sql.Connection conn,
SchedulingContext ctxt)
|
int |
getNumberOfTriggers(SchedulingContext ctxt)
Get the number of s that are
stored in the JobsStore . |
java.util.Set |
getPausedTriggerGroups(java.sql.Connection conn,
SchedulingContext ctxt)
Pause all of the in the
given group. |
java.util.Set |
getPausedTriggerGroups(SchedulingContext ctxt)
|
java.lang.String |
getSelectWithLockSQL()
|
java.lang.String |
getTablePrefix()
Get the prefix that should be pre-pended to all table names. |
ThreadExecutor |
getThreadExecutor()
|
protected java.lang.String[] |
getTriggerGroupNames(java.sql.Connection conn,
SchedulingContext ctxt)
|
java.lang.String[] |
getTriggerGroupNames(SchedulingContext ctxt)
Get the names of all of the
groups. |
protected java.lang.String[] |
getTriggerNames(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String groupName)
|
java.lang.String[] |
getTriggerNames(SchedulingContext ctxt,
java.lang.String groupName)
Get the names of all of the s
that have the given group name. |
protected Trigger[] |
getTriggersForJob(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
|
Trigger[] |
getTriggersForJob(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
Get all of the Triggers that are associated to the given Job. |
int |
getTriggerState(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
|
int |
getTriggerState(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
Get the current state of the identified . |
boolean |
getUseDBLocks()
Get whether this instance should use database-based thread synchronization. |
void |
initialize(ClassLoadHelper loadHelper,
SchedulerSignaler signaler)
Called by the QuartzScheduler before the JobStore is
used, in order to give it a chance to initialize. |
boolean |
isAcquireTriggersWithinLock()
Whether or not the query and update to acquire a Trigger for firing should be performed after obtaining an explicit DB lock (to avoid possible race conditions on the trigger's db row). |
boolean |
isClustered()
Get whether this instance is part of a cluster. |
boolean |
isDontSetAutoCommitFalse()
|
boolean |
isLockOnInsert()
|
boolean |
isThreadsInheritInitializersClassLoadContext()
Get whether to set the class load context of spawned threads to that of the initializing thread. |
boolean |
isTxIsolationLevelSerializable()
|
protected boolean |
jobExists(java.sql.Connection conn,
java.lang.String jobName,
java.lang.String groupName)
Check existence of a given job. |
protected void |
logWarnIfNonZero(int val,
java.lang.String warning)
|
void |
pauseAll(java.sql.Connection conn,
SchedulingContext ctxt)
Pause all triggers - equivalent of calling pauseTriggerGroup(group)
on every group. |
void |
pauseAll(SchedulingContext ctxt)
Pause all triggers - equivalent of calling pauseTriggerGroup(group)
on every group. |
void |
pauseJob(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
Pause the with the given name - by
pausing all of its current Trigger s. |
void |
pauseJobGroup(SchedulingContext ctxt,
java.lang.String groupName)
Pause all of the in the given
group - by pausing all of their Trigger s. |
void |
pauseTrigger(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
Pause the with the given name. |
void |
pauseTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
Pause the with the given name. |
void |
pauseTriggerGroup(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String groupName)
Pause all of the in the
given group. |
void |
pauseTriggerGroup(SchedulingContext ctxt,
java.lang.String groupName)
Pause all of the in the
given group. |
protected void |
recoverJobs()
Recover any failed or misfired jobs and clean up the data store as appropriate. |
protected void |
recoverJobs(java.sql.Connection conn)
Will recover any failed or misfired jobs and clean up the data store as appropriate. |
protected JobStoreSupport.RecoverMisfiredJobsResult |
recoverMisfiredJobs(java.sql.Connection conn,
boolean recovering)
|
protected void |
releaseAcquiredTrigger(java.sql.Connection conn,
SchedulingContext ctxt,
Trigger trigger)
|
void |
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). |
protected void |
releaseLock(java.sql.Connection conn,
java.lang.String lockName,
boolean doIt)
|
protected boolean |
removeCalendar(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String calName)
|
boolean |
removeCalendar(SchedulingContext ctxt,
java.lang.String calName)
Remove (delete) the with the
given name. |
protected boolean |
removeJob(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName,
boolean activeDeleteSafe)
|
boolean |
removeJob(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
Remove (delete) the with the given
name, and any s that reference
it. |
protected boolean |
removeTrigger(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
|
boolean |
removeTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
Remove (delete) the with the
given name. |
protected boolean |
replaceTrigger(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName,
Trigger newTrigger)
|
boolean |
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 |
resumeAll(java.sql.Connection conn,
SchedulingContext ctxt)
protected |
void |
resumeAll(SchedulingContext ctxt)
Resume (un-pause) all triggers - equivalent of calling resumeTriggerGroup(group)
on every group. |
void |
resumeJob(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
Resume (un-pause) the with the
given name. |
void |
resumeJobGroup(SchedulingContext ctxt,
java.lang.String groupName)
Resume (un-pause) all of the in
the given group. |
void |
resumeTrigger(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
Resume (un-pause) the with the
given name. |
void |
resumeTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
Resume (un-pause) the with the
given name. |
void |
resumeTriggerGroup(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String groupName)
Resume (un-pause) all of the
in the given group. |
void |
resumeTriggerGroup(SchedulingContext ctxt,
java.lang.String groupName)
Resume (un-pause) all of the
in the given group. |
protected Calendar |
retrieveCalendar(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String calName)
|
Calendar |
retrieveCalendar(SchedulingContext ctxt,
java.lang.String calName)
Retrieve the given . |
protected JobDetail |
retrieveJob(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
|
JobDetail |
retrieveJob(SchedulingContext ctxt,
java.lang.String jobName,
java.lang.String groupName)
Retrieve the for the given
. |
protected Trigger |
retrieveTrigger(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
|
protected Trigger |
retrieveTrigger(java.sql.Connection conn,
java.lang.String triggerName,
java.lang.String groupName)
|
Trigger |
retrieveTrigger(SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName)
Retrieve the given . |
protected void |
rollbackConnection(java.sql.Connection conn)
Rollback the supplied connection. |
void |
schedulerStarted()
Called by the QuartzScheduler to inform the JobStore that
the scheduler has started. |
void |
setAcquireTriggersWithinLock(boolean acquireTriggersWithinLock)
Whether or not the query and update to acquire a Trigger for firing should be performed after obtaining an explicit DB lock. |
void |
setClusterCheckinInterval(long l)
Set the frequency (in milliseconds) at which this instance "checks-in" with the other instances of the cluster. |
void |
setDataSource(java.lang.String dsName)
Set the name of the DataSource that should be used for
performing database functions. |
void |
setDbRetryInterval(long dbRetryInterval)
|
void |
setDontSetAutoCommitFalse(boolean b)
Don't call set autocommit(false) on connections obtained from the DataSource. |
void |
setDoubleCheckLockMisfireHandler(boolean doubleCheckLockMisfireHandler)
Set whether to check to see if there are Triggers that have misfired before actually acquiring the lock to recover them. |
void |
setDriverDelegateClass(java.lang.String delegateClassName)
Set the JDBC driver delegate class. |
void |
setInstanceId(java.lang.String instanceId)
Set the instance Id of the Scheduler (must be unique within a cluster). |
void |
setInstanceName(java.lang.String instanceName)
Set the instance name of the Scheduler (must be unique within this server instance). |
void |
setIsClustered(boolean isClustered)
Set whether this instance is part of a cluster. |
void |
setLockHandler(Semaphore lockHandler)
|
void |
setLockOnInsert(boolean lockOnInsert)
Whether or not to obtain locks when inserting new jobs/triggers. |
void |
setMakeThreadsDaemons(boolean makeThreadsDaemons)
Set whether the threads spawned by this JobStore should be marked as daemon. |
void |
setMaxMisfiresToHandleAtATime(int maxToRecoverAtATime)
Set the maximum number of misfired triggers that the misfire handling thread will try to recover at one time (within one transaction). |
void |
setMisfireThreshold(long misfireThreshold)
The the number of milliseconds by which a trigger must have missed its next-fire-time, in order for it to be considered "misfired" and thus have its misfire instruction applied. |
void |
setSelectWithLockSQL(java.lang.String string)
set the SQL statement to use to select and lock a row in the "locks" table. |
void |
setTablePrefix(java.lang.String prefix)
Set the prefix that should be pre-pended to all table names. |
void |
setThreadExecutor(ThreadExecutor threadExecutor)
|
void |
setThreadsInheritInitializersClassLoadContext(boolean threadsInheritInitializersClassLoadContext)
Set whether to set the class load context of spawned threads to that of the initializing thread. |
void |
setTxIsolationLevelSerializable(boolean b)
Set the transaction isolation level of DB connections to sequential. |
void |
setUseDBLocks(boolean useDBLocks)
Set whether this instance should use database-based thread synchronization. |
void |
setUseProperties(java.lang.String useProp)
Set whether String-only properties will be handled in JobDataMaps. |
void |
shutdown()
Called by the QuartzScheduler to inform the JobStore that
it should free up all of it's resources because the scheduler is
shutting down. |
protected void |
signalSchedulingChangeImmediately(long candidateNewNextFireTime)
|
protected void |
signalSchedulingChangeOnTxCompletion(long candidateNewNextFireTime)
|
protected void |
storeCalendar(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String calName,
Calendar calendar,
boolean replaceExisting,
boolean updateTriggers)
|
void |
storeCalendar(SchedulingContext ctxt,
java.lang.String calName,
Calendar calendar,
boolean replaceExisting,
boolean updateTriggers)
Store the given . |
protected void |
storeJob(java.sql.Connection conn,
SchedulingContext ctxt,
JobDetail newJob,
boolean replaceExisting)
Insert or update a job. |
void |
storeJob(SchedulingContext ctxt,
JobDetail newJob,
boolean replaceExisting)
Store the given . |
void |
storeJobAndTrigger(SchedulingContext ctxt,
JobDetail newJob,
Trigger newTrigger)
Store the given and . |
protected void |
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. |
void |
storeTrigger(SchedulingContext ctxt,
Trigger newTrigger,
boolean replaceExisting)
Store the given . |
boolean |
supportsPersistence()
|
protected void |
triggeredJobComplete(java.sql.Connection conn,
SchedulingContext ctxt,
Trigger trigger,
JobDetail jobDetail,
int triggerInstCode)
|
void |
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. |
protected boolean |
triggerExists(java.sql.Connection conn,
java.lang.String triggerName,
java.lang.String groupName)
Check existence of a given trigger. |
protected TriggerFiredBundle |
triggerFired(java.sql.Connection conn,
SchedulingContext ctxt,
Trigger trigger)
|
TriggerFiredBundle |
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). |
protected boolean |
updateMisfiredTrigger(java.sql.Connection conn,
SchedulingContext ctxt,
java.lang.String triggerName,
java.lang.String groupName,
java.lang.String newStateIfNotComplete,
boolean forceState)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected static final java.lang.String LOCK_TRIGGER_ACCESS
protected static final java.lang.String LOCK_JOB_ACCESS
protected static final java.lang.String LOCK_CALENDAR_ACCESS
protected static final java.lang.String LOCK_STATE_ACCESS
protected static final java.lang.String LOCK_MISFIRE_ACCESS
protected java.lang.String dsName
protected java.lang.String tablePrefix
protected boolean useProperties
protected java.lang.String instanceId
protected java.lang.String instanceName
protected java.lang.String delegateClassName
protected java.lang.Class delegateClass
protected java.util.HashMap calendarCache
protected int maxToRecoverAtATime
protected java.lang.ThreadLocal<java.lang.Long> sigChangeForTxCompletion
protected boolean firstCheckIn
protected long lastCheckin
Constructor Detail |
---|
public JobStoreSupport()
Method Detail |
---|
public void setDataSource(java.lang.String dsName)
Set the name of the DataSource
that should be used for
performing database functions.
public java.lang.String getDataSource()
Get the name of the DataSource
that should be used for
performing database functions.
public void setTablePrefix(java.lang.String prefix)
Set the prefix that should be pre-pended to all table names.
public java.lang.String getTablePrefix()
Get the prefix that should be pre-pended to all table names.
public void setUseProperties(java.lang.String useProp)
Set whether String-only properties will be handled in JobDataMaps.
public boolean canUseProperties()
Get whether String-only properties will be handled in JobDataMaps.
public void setInstanceId(java.lang.String instanceId)
Set the instance Id of the Scheduler (must be unique within a cluster).
setInstanceId
in interface JobStore
public java.lang.String getInstanceId()
Get the instance Id of the Scheduler (must be unique within a cluster).
public void setInstanceName(java.lang.String instanceName)
setInstanceName
in interface JobStore
public java.lang.String getInstanceName()
public long getEstimatedTimeToReleaseAndAcquireTrigger()
JobStore
JobStore
implementation
estimates that it will take to release a trigger and acquire a new one.
getEstimatedTimeToReleaseAndAcquireTrigger
in interface JobStore
public void setIsClustered(boolean isClustered)
Set whether this instance is part of a cluster.
public boolean isClustered()
Get whether this instance is part of a cluster.
isClustered
in interface JobStore
public long getClusterCheckinInterval()
Get the frequency (in milliseconds) at which this instance "checks-in" with the other instances of the cluster. -- Affects the rate of detecting failed instances.
public void setClusterCheckinInterval(long l)
Set the frequency (in milliseconds) at which this instance "checks-in" with the other instances of the cluster. -- Affects the rate of detecting failed instances.
public int getMaxMisfiresToHandleAtATime()
Get the maximum number of misfired triggers that the misfire handling thread will try to recover at one time (within one transaction). The default is 20.
public void setMaxMisfiresToHandleAtATime(int maxToRecoverAtATime)
Set the maximum number of misfired triggers that the misfire handling thread will try to recover at one time (within one transaction). The default is 20.
public long getDbRetryInterval()
public void setDbRetryInterval(long dbRetryInterval)
dbRetryInterval
- The dbRetryInterval to set.public void setUseDBLocks(boolean useDBLocks)
Set whether this instance should use database-based thread synchronization.
public boolean getUseDBLocks()
Get whether this instance should use database-based thread synchronization.
public boolean isLockOnInsert()
public void setLockOnInsert(boolean lockOnInsert)
true
, which is safest - some db's (such as
MS SQLServer) seem to require this to avoid deadlocks under high load,
while others seem to do fine without.
Setting this property to false
will provide a
significant performance increase during the addition of new jobs
and triggers.
lockOnInsert
- public long getMisfireThreshold()
public void setMisfireThreshold(long misfireThreshold)
misfireThreshold
- public boolean isDontSetAutoCommitFalse()
public void setDontSetAutoCommitFalse(boolean b)
b
- public boolean isTxIsolationLevelSerializable()
public void setTxIsolationLevelSerializable(boolean b)
b
- public boolean isAcquireTriggersWithinLock()
public void setThreadExecutor(ThreadExecutor threadExecutor)
public ThreadExecutor getThreadExecutor()
public void setAcquireTriggersWithinLock(boolean acquireTriggersWithinLock)
public void setDriverDelegateClass(java.lang.String delegateClassName) throws InvalidConfigurationException
Set the JDBC driver delegate class.
delegateClassName
- the delegate class name
InvalidConfigurationException
public java.lang.String getDriverDelegateClass()
Get the JDBC driver delegate class name.
public java.lang.String getSelectWithLockSQL()
public void setSelectWithLockSQL(java.lang.String string)
set the SQL statement to use to select and lock a row in the "locks" table.
StdRowLockSemaphore
protected ClassLoadHelper getClassLoadHelper()
public boolean getMakeThreadsDaemons()
MisfireHandler
and the ClusterManager
.
Thread.setDaemon(boolean)
public void setMakeThreadsDaemons(boolean makeThreadsDaemons)
MisfireHandler
and the ClusterManager
.
Thread.setDaemon(boolean)
public boolean isThreadsInheritInitializersClassLoadContext()
public void setThreadsInheritInitializersClassLoadContext(boolean threadsInheritInitializersClassLoadContext)
public boolean getDoubleCheckLockMisfireHandler()
public void setDoubleCheckLockMisfireHandler(boolean doubleCheckLockMisfireHandler)
protected org.slf4j.Logger getLog()
public void initialize(ClassLoadHelper loadHelper, SchedulerSignaler signaler) throws SchedulerConfigException
Called by the QuartzScheduler before the JobStore
is
used, in order to give it a chance to initialize.
initialize
in interface JobStore
SchedulerConfigException
public void schedulerStarted() throws SchedulerException
JobStore
Called by the QuartzScheduler to inform the JobStore
that
the scheduler has started.
schedulerStarted
in interface JobStore
SchedulerException
JobStore.schedulerStarted()
public void shutdown()
Called by the QuartzScheduler to inform the JobStore
that
it should free up all of it's resources because the scheduler is
shutting down.
shutdown
in interface JobStore
public boolean supportsPersistence()
supportsPersistence
in interface JobStore
protected abstract java.sql.Connection getNonManagedTXConnection() throws JobPersistenceException
JobPersistenceException
protected java.sql.Connection getAttributeRestoringConnection(java.sql.Connection conn)
Connection
in a Proxy such that attributes
that might be set will be restored before the connection is closed
(and potentially restored to a pool).
protected java.sql.Connection getConnection() throws JobPersistenceException
JobPersistenceException
protected void releaseLock(java.sql.Connection conn, java.lang.String lockName, boolean doIt)
protected void cleanVolatileTriggerAndJobs() throws JobPersistenceException
JobPersistenceException
- If jobs could not be recovered.protected void cleanVolatileTriggerAndJobs(java.sql.Connection conn) throws JobPersistenceException
Removes all volatile data.
JobPersistenceException
- if jobs could not be recoveredprotected void recoverJobs() throws JobPersistenceException
JobPersistenceException
- if jobs could not be recoveredprotected void recoverJobs(java.sql.Connection conn) throws JobPersistenceException
Will recover any failed or misfired jobs and clean up the data store as appropriate.
JobPersistenceException
- if jobs could not be recoveredprotected long getMisfireTime()
protected JobStoreSupport.RecoverMisfiredJobsResult recoverMisfiredJobs(java.sql.Connection conn, boolean recovering) throws JobPersistenceException, java.sql.SQLException
JobPersistenceException
java.sql.SQLException
protected boolean updateMisfiredTrigger(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName, java.lang.String newStateIfNotComplete, boolean forceState) throws JobPersistenceException
JobPersistenceException
public void storeJobAndTrigger(SchedulingContext ctxt, JobDetail newJob, Trigger newTrigger) throws ObjectAlreadyExistsException, JobPersistenceException
Store the given
and JobDetail
.
Trigger
storeJobAndTrigger
in interface JobStore
newJob
- The JobDetail
to be stored.newTrigger
- The Trigger
to be stored.
ObjectAlreadyExistsException
- if a Job
with the same name/group already
exists.
JobPersistenceException
public void storeJob(SchedulingContext ctxt, JobDetail newJob, boolean replaceExisting) throws ObjectAlreadyExistsException, JobPersistenceException
Store the given
.
JobDetail
storeJob
in interface JobStore
newJob
- The JobDetail
to be stored.replaceExisting
- If true
, any Job
existing in the
JobStore
with the same name & group should be
over-written.
ObjectAlreadyExistsException
- if a Job
with the same name/group already
exists, and replaceExisting is set to false.
JobPersistenceException
protected void storeJob(java.sql.Connection conn, SchedulingContext ctxt, JobDetail newJob, boolean replaceExisting) throws ObjectAlreadyExistsException, JobPersistenceException
Insert or update a job.
ObjectAlreadyExistsException
JobPersistenceException
protected boolean jobExists(java.sql.Connection conn, java.lang.String jobName, java.lang.String groupName) throws JobPersistenceException
Check existence of a given job.
JobPersistenceException
public void storeTrigger(SchedulingContext ctxt, Trigger newTrigger, boolean replaceExisting) throws ObjectAlreadyExistsException, JobPersistenceException
Store the given
.
Trigger
storeTrigger
in interface JobStore
newTrigger
- The Trigger
to be stored.replaceExisting
- If true
, any Trigger
existing in
the JobStore
with the same name & group should
be over-written.
ObjectAlreadyExistsException
- if a Trigger
with the same name/group already
exists, and replaceExisting is set to false.
JobPersistenceException
JobStore.pauseTriggerGroup(SchedulingContext, String)
protected void storeTrigger(java.sql.Connection conn, SchedulingContext ctxt, Trigger newTrigger, JobDetail job, boolean replaceExisting, java.lang.String state, boolean forceState, boolean recovering) throws ObjectAlreadyExistsException, JobPersistenceException
Insert or update a trigger.
ObjectAlreadyExistsException
JobPersistenceException
protected boolean triggerExists(java.sql.Connection conn, java.lang.String triggerName, java.lang.String groupName) throws JobPersistenceException
Check existence of a given trigger.
JobPersistenceException
public boolean removeJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName) throws JobPersistenceException
Remove (delete) the
with the given
name, and any Job
s that reference
it.
Trigger
If removal of the Job
results in an empty group, the
group should be removed from the JobStore
's list of
known group names.
removeJob
in interface JobStore
jobName
- The name of the Job
to be removed.groupName
- The group name of the Job
to be removed.
true
if a Job
with the given name &
group was found and removed from the store.
JobPersistenceException
protected boolean removeJob(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName, boolean activeDeleteSafe) throws JobPersistenceException
JobPersistenceException
public JobDetail retrieveJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName) throws JobPersistenceException
Retrieve the
for the given
JobDetail
.
Job
retrieveJob
in interface JobStore
jobName
- The name of the Job
to be retrieved.groupName
- The group name of the Job
to be retrieved.
Job
, or null if there is no match.
JobPersistenceException
protected JobDetail retrieveJob(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName) throws JobPersistenceException
JobPersistenceException
public boolean removeTrigger(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName) throws JobPersistenceException
Remove (delete) the
with the
given name.
Trigger
If removal of the Trigger
results in an empty group, the
group should be removed from the JobStore
's list of
known group names.
If removal of the Trigger
results in an 'orphaned' Job
that is not 'durable', then the Job
should be deleted
also.
removeTrigger
in interface JobStore
triggerName
- The name of the Trigger
to be removed.groupName
- The group name of the Trigger
to be removed.
true
if a Trigger
with the given
name & group was found and removed from the store.
JobPersistenceException
protected boolean removeTrigger(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName) throws JobPersistenceException
JobPersistenceException
public boolean replaceTrigger(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName, Trigger newTrigger) throws JobPersistenceException
JobStore
Remove (delete) the
with the
given name, and store the new given one - which must be associated
with the same job.
Trigger
replaceTrigger
in interface JobStore
triggerName
- The name of the Trigger
to be removed.groupName
- The group name of the Trigger
to be removed.newTrigger
- The new Trigger
to be stored.
true
if a Trigger
with the given
name & group was found and removed from the store.
JobPersistenceException
JobStore.replaceTrigger(org.quartz.core.SchedulingContext, java.lang.String, java.lang.String, org.quartz.Trigger)
protected boolean replaceTrigger(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName, Trigger newTrigger) throws JobPersistenceException
JobPersistenceException
public Trigger retrieveTrigger(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName) throws JobPersistenceException
Retrieve the given
.
Trigger
retrieveTrigger
in interface JobStore
triggerName
- The name of the Trigger
to be retrieved.groupName
- The group name of the Trigger
to be retrieved.
Trigger
, or null if there is no
match.
JobPersistenceException
protected Trigger retrieveTrigger(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName) throws JobPersistenceException
JobPersistenceException
protected Trigger retrieveTrigger(java.sql.Connection conn, java.lang.String triggerName, java.lang.String groupName) throws JobPersistenceException
JobPersistenceException
public int getTriggerState(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName) throws JobPersistenceException
Get the current state of the identified
.
Trigger
getTriggerState
in interface JobStore
JobPersistenceException
Trigger.STATE_NORMAL
,
Trigger.STATE_PAUSED
,
Trigger.STATE_COMPLETE
,
Trigger.STATE_ERROR
,
Trigger.STATE_NONE
public int getTriggerState(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName) throws JobPersistenceException
JobPersistenceException
public void storeCalendar(SchedulingContext ctxt, java.lang.String calName, Calendar calendar, boolean replaceExisting, boolean updateTriggers) throws ObjectAlreadyExistsException, JobPersistenceException
Store the given
.
Calendar
storeCalendar
in interface JobStore
calName
- The name of the calendar.calendar
- The Calendar
to be stored.replaceExisting
- If true
, any Calendar
existing
in the JobStore
with the same name & group
should be over-written.updateTriggers
- If true
, any Trigger
s existing
in the JobStore
that reference an existing
Calendar with the same name with have their next fire time
re-computed with the new Calendar
.
ObjectAlreadyExistsException
- if a Calendar
with the same name already
exists, and replaceExisting is set to false.
JobPersistenceException
protected void storeCalendar(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String calName, Calendar calendar, boolean replaceExisting, boolean updateTriggers) throws ObjectAlreadyExistsException, JobPersistenceException
ObjectAlreadyExistsException
JobPersistenceException
protected boolean calendarExists(java.sql.Connection conn, java.lang.String calName) throws JobPersistenceException
JobPersistenceException
public boolean removeCalendar(SchedulingContext ctxt, java.lang.String calName) throws JobPersistenceException
Remove (delete) the
with the
given name.
Calendar
If removal of the Calendar
would result in
Trigger
s pointing to non-existent calendars, then a
JobPersistenceException
will be thrown.
removeCalendar
in interface JobStore
calName
- The name of the Calendar
to be removed.
true
if a Calendar
with the given name
was found and removed from the store.
JobPersistenceException
protected boolean removeCalendar(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String calName) throws JobPersistenceException
JobPersistenceException
public Calendar retrieveCalendar(SchedulingContext ctxt, java.lang.String calName) throws JobPersistenceException
Retrieve the given
.
Trigger
retrieveCalendar
in interface JobStore
calName
- The name of the Calendar
to be retrieved.
Calendar
, or null if there is no
match.
JobPersistenceException
protected Calendar retrieveCalendar(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String calName) throws JobPersistenceException
JobPersistenceException
public int getNumberOfJobs(SchedulingContext ctxt) throws JobPersistenceException
Get the number of
s that are
stored in the Job
JobStore
.
getNumberOfJobs
in interface JobStore
JobPersistenceException
protected int getNumberOfJobs(java.sql.Connection conn, SchedulingContext ctxt) throws JobPersistenceException
JobPersistenceException
public int getNumberOfTriggers(SchedulingContext ctxt) throws JobPersistenceException
Get the number of
s that are
stored in the Trigger
JobsStore
.
getNumberOfTriggers
in interface JobStore
JobPersistenceException
protected int getNumberOfTriggers(java.sql.Connection conn, SchedulingContext ctxt) throws JobPersistenceException
JobPersistenceException
public int getNumberOfCalendars(SchedulingContext ctxt) throws JobPersistenceException
Get the number of
s that are
stored in the Calendar
JobsStore
.
getNumberOfCalendars
in interface JobStore
JobPersistenceException
protected int getNumberOfCalendars(java.sql.Connection conn, SchedulingContext ctxt) throws JobPersistenceException
JobPersistenceException
public java.lang.String[] getJobNames(SchedulingContext ctxt, java.lang.String groupName) throws JobPersistenceException
Get the names of all of the
s that
have the given group name.
Job
If there are no jobs in the given group name, the result should be a
zero-length array (not null
).
getJobNames
in interface JobStore
JobPersistenceException
protected java.lang.String[] getJobNames(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String groupName) throws JobPersistenceException
JobPersistenceException
public java.lang.String[] getTriggerNames(SchedulingContext ctxt, java.lang.String groupName) throws JobPersistenceException
Get the names of all of the
s
that have the given group name.
Trigger
If there are no triggers in the given group name, the result should be a
zero-length array (not null
).
getTriggerNames
in interface JobStore
JobPersistenceException
protected java.lang.String[] getTriggerNames(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String groupName) throws JobPersistenceException
JobPersistenceException
public java.lang.String[] getJobGroupNames(SchedulingContext ctxt) throws JobPersistenceException
Get the names of all of the
groups.
Job
If there are no known group names, the result should be a zero-length
array (not null
).
getJobGroupNames
in interface JobStore
JobPersistenceException
protected java.lang.String[] getJobGroupNames(java.sql.Connection conn, SchedulingContext ctxt) throws JobPersistenceException
JobPersistenceException
public java.lang.String[] getTriggerGroupNames(SchedulingContext ctxt) throws JobPersistenceException
Get the names of all of the
groups.
Trigger
If there are no known group names, the result should be a zero-length
array (not null
).
getTriggerGroupNames
in interface JobStore
JobPersistenceException
protected java.lang.String[] getTriggerGroupNames(java.sql.Connection conn, SchedulingContext ctxt) throws JobPersistenceException
JobPersistenceException
public java.lang.String[] getCalendarNames(SchedulingContext ctxt) throws JobPersistenceException
Get the names of all of the
s
in the Calendar
JobStore
.
If there are no Calendars in the given group name, the result should be
a zero-length array (not null
).
getCalendarNames
in interface JobStore
JobPersistenceException
protected java.lang.String[] getCalendarNames(java.sql.Connection conn, SchedulingContext ctxt) throws JobPersistenceException
JobPersistenceException
public Trigger[] getTriggersForJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName) throws JobPersistenceException
Get all of the Triggers that are associated to the given Job.
If there are no matches, a zero-length array should be returned.
getTriggersForJob
in interface JobStore
JobPersistenceException
protected Trigger[] getTriggersForJob(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName) throws JobPersistenceException
JobPersistenceException
public void pauseTrigger(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName) throws JobPersistenceException
Pause the
with the given name.
Trigger
pauseTrigger
in interface JobStore
JobPersistenceException
resumeTrigger(SchedulingContext, String, String)
public void pauseTrigger(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName) throws JobPersistenceException
Pause the
with the given name.
Trigger
JobPersistenceException
resumeTrigger(Connection, SchedulingContext, String, String)
public void pauseJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName) throws JobPersistenceException
Pause the
with the given name - by
pausing all of its current Job
Trigger
s.
pauseJob
in interface JobStore
JobPersistenceException
resumeJob(SchedulingContext, String, String)
public void pauseJobGroup(SchedulingContext ctxt, java.lang.String groupName) throws JobPersistenceException
Pause all of the
in the given
group - by pausing all of their Job
sTrigger
s.
pauseJobGroup
in interface JobStore
JobPersistenceException
resumeJobGroup(SchedulingContext, String)
protected java.lang.String checkBlockedState(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String jobName, java.lang.String jobGroupName, java.lang.String currentState) throws JobPersistenceException
JobPersistenceException
public void resumeTrigger(SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName) throws JobPersistenceException
Resume (un-pause) the
with the
given name.
Trigger
If the Trigger
missed one or more fire-times, then the
Trigger
's misfire instruction will be applied.
resumeTrigger
in interface JobStore
JobPersistenceException
pauseTrigger(SchedulingContext, String, String)
public void resumeTrigger(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String triggerName, java.lang.String groupName) throws JobPersistenceException
Resume (un-pause) the
with the
given name.
Trigger
If the Trigger
missed one or more fire-times, then the
Trigger
's misfire instruction will be applied.
JobPersistenceException
pauseTrigger(Connection, SchedulingContext, String, String)
public void resumeJob(SchedulingContext ctxt, java.lang.String jobName, java.lang.String groupName) throws JobPersistenceException
Resume (un-pause) the
with the
given name.
Job
If any of the Job
'sTrigger
s missed one
or more fire-times, then the Trigger
's misfire
instruction will be applied.
resumeJob
in interface JobStore
JobPersistenceException
pauseJob(SchedulingContext, String, String)
public void resumeJobGroup(SchedulingContext ctxt, java.lang.String groupName) throws JobPersistenceException
Resume (un-pause) all of the
in
the given group.
Job
s
If any of the Job
s had Trigger
s that
missed one or more fire-times, then the Trigger
's
misfire instruction will be applied.
resumeJobGroup
in interface JobStore
JobPersistenceException
pauseJobGroup(SchedulingContext, String)
public void pauseTriggerGroup(SchedulingContext ctxt, java.lang.String groupName) throws JobPersistenceException
Pause all of the
in the
given group.
Trigger
s
pauseTriggerGroup
in interface JobStore
JobPersistenceException
resumeTriggerGroup(SchedulingContext, String)
public void pauseTriggerGroup(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String groupName) throws JobPersistenceException
Pause all of the
in the
given group.
Trigger
s
JobPersistenceException
resumeTriggerGroup(Connection, SchedulingContext, String)
public java.util.Set getPausedTriggerGroups(SchedulingContext ctxt) throws JobPersistenceException
getPausedTriggerGroups
in interface JobStore
JobPersistenceException
public java.util.Set getPausedTriggerGroups(java.sql.Connection conn, SchedulingContext ctxt) throws JobPersistenceException
Pause all of the
in the
given group.
Trigger
s
JobPersistenceException
resumeTriggerGroup(Connection, SchedulingContext, String)
public void resumeTriggerGroup(SchedulingContext ctxt, java.lang.String groupName) throws JobPersistenceException
Resume (un-pause) all of the
in the given group.
Trigger
s
If any Trigger
missed one or more fire-times, then the
Trigger
's misfire instruction will be applied.
resumeTriggerGroup
in interface JobStore
JobPersistenceException
pauseTriggerGroup(SchedulingContext, String)
public void resumeTriggerGroup(java.sql.Connection conn, SchedulingContext ctxt, java.lang.String groupName) throws JobPersistenceException
Resume (un-pause) all of the
in the given group.
Trigger
s
If any Trigger
missed one or more fire-times, then the
Trigger
's misfire instruction will be applied.
JobPersistenceException
pauseTriggerGroup(Connection, SchedulingContext, String)
public void pauseAll(SchedulingContext ctxt) throws JobPersistenceException
Pause all triggers - equivalent of calling pauseTriggerGroup(group)
on every group.
When resumeAll()
is called (to un-pause), trigger misfire
instructions WILL be applied.
pauseAll
in interface JobStore
JobPersistenceException
resumeAll(SchedulingContext)
,
pauseTriggerGroup(SchedulingContext, String)
public void pauseAll(java.sql.Connection conn, SchedulingContext ctxt) throws JobPersistenceException
Pause all triggers - equivalent of calling pauseTriggerGroup(group)
on every group.
When resumeAll()
is called (to un-pause), trigger misfire
instructions WILL be applied.
JobPersistenceException
resumeAll(SchedulingContext)
,
pauseTriggerGroup(SchedulingContext, String)
public void resumeAll(SchedulingContext ctxt) throws JobPersistenceException
Resume (un-pause) all triggers - equivalent of calling resumeTriggerGroup(group)
on every group.
If any Trigger
missed one or more fire-times, then the
Trigger
's misfire instruction will be applied.
resumeAll
in interface JobStore
JobPersistenceException
pauseAll(SchedulingContext)
public void resumeAll(java.sql.Connection conn, SchedulingContext ctxt) throws JobPersistenceException
Resume (un-pause) all triggers - equivalent of calling resumeTriggerGroup(group)
on every group.
If any Trigger
missed one or more fire-times, then the
Trigger
's misfire instruction will be applied.
JobPersistenceException
pauseAll(SchedulingContext)
protected java.lang.String getFiredTriggerRecordId()
public Trigger acquireNextTrigger(SchedulingContext ctxt, long noLaterThan) throws JobPersistenceException
Get a handle to the next N triggers to be fired, and mark them as 'reserved' by the calling scheduler.
acquireNextTrigger
in interface JobStore
noLaterThan
- If > 0, the JobStore should only return a Trigger
that will fire no later than the time represented in this value as
milliseconds.
JobPersistenceException
releaseAcquiredTrigger(SchedulingContext, Trigger)
protected Trigger acquireNextTrigger(java.sql.Connection conn, SchedulingContext ctxt, long noLaterThan) throws JobPersistenceException
JobPersistenceException
public void releaseAcquiredTrigger(SchedulingContext ctxt, Trigger trigger) throws JobPersistenceException
Inform the JobStore
that the scheduler no longer plans to
fire the given Trigger
, that it had previously acquired
(reserved).
releaseAcquiredTrigger
in interface JobStore
JobPersistenceException
protected void releaseAcquiredTrigger(java.sql.Connection conn, SchedulingContext ctxt, Trigger trigger) throws JobPersistenceException
JobPersistenceException
public TriggerFiredBundle triggerFired(SchedulingContext ctxt, Trigger trigger) throws JobPersistenceException
Inform the JobStore
that the scheduler is now firing the
given Trigger
(executing its associated Job
),
that it had previously acquired (reserved).
triggerFired
in interface JobStore
JobPersistenceException
protected TriggerFiredBundle triggerFired(java.sql.Connection conn, SchedulingContext ctxt, Trigger trigger) throws JobPersistenceException
JobPersistenceException
public void triggeredJobComplete(SchedulingContext ctxt, Trigger trigger, JobDetail jobDetail, int triggerInstCode) throws JobPersistenceException
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 JobDataMap
JobDetail
should be updated if the Job
is stateful.
triggeredJobComplete
in interface JobStore
JobPersistenceException
protected void triggeredJobComplete(java.sql.Connection conn, SchedulingContext ctxt, Trigger trigger, JobDetail jobDetail, int triggerInstCode) throws JobPersistenceException
JobPersistenceException
protected DriverDelegate getDelegate() throws NoSuchDelegateException
Get the driver delegate for DB operations.
NoSuchDelegateException
protected Semaphore getLockHandler()
public void setLockHandler(Semaphore lockHandler)
protected JobStoreSupport.RecoverMisfiredJobsResult doRecoverMisfires() throws JobPersistenceException
JobPersistenceException
protected void signalSchedulingChangeOnTxCompletion(long candidateNewNextFireTime)
protected java.lang.Long clearAndGetSignalSchedulingChangeOnTxCompletion()
protected void signalSchedulingChangeImmediately(long candidateNewNextFireTime)
protected boolean doCheckin() throws JobPersistenceException
JobPersistenceException
protected java.util.List findFailedInstances(java.sql.Connection conn) throws JobPersistenceException
JobPersistenceException
protected long calcFailedIfAfter(SchedulerStateRecord rec)
protected java.util.List clusterCheckIn(java.sql.Connection conn) throws JobPersistenceException
JobPersistenceException
protected void clusterRecover(java.sql.Connection conn, java.util.List failedInstances) throws JobPersistenceException
JobPersistenceException
protected void logWarnIfNonZero(int val, java.lang.String warning)
protected void cleanupConnection(java.sql.Connection conn)
Cleanup the given database connection. This means restoring any modified auto commit or transaction isolation connection attributes, and then closing the underlying connection.
This is separate from closeConnection() because the Spring integration relies on being able to overload closeConnection() and expects the same connection back that it originally returned from the datasource.
closeConnection(Connection)
protected void closeConnection(java.sql.Connection conn)
Connection
.
Ignores a null Connection
.
Any exception thrown trying to close the Connection
is
logged and ignored.
conn
- The Connection
to close (Optional).protected void rollbackConnection(java.sql.Connection conn)
Logs any SQLException it gets trying to rollback, but will not propogate the exception lest it mask the exception that caused the caller to need to rollback in the first place.
conn
- (Optional)protected void commitConnection(java.sql.Connection conn) throws JobPersistenceException
conn
- (Optional)
JobPersistenceException
- thrown if a SQLException occurs when the
connection is committedpublic java.lang.Object executeWithoutLock(JobStoreSupport.TransactionCallback txCallback) throws JobPersistenceException
This method just forwards to executeInLock() with a null lockName.
JobPersistenceException
executeInLock(String, TransactionCallback)
protected void executeInLock(java.lang.String lockName, JobStoreSupport.VoidTransactionCallback txCallback) throws JobPersistenceException
lockName
- The name of the lock to aquire, for example
"TRIGGER_ACCESS". If null, then no lock is aquired, but the
lockCallback is still executed in a transaction.
JobPersistenceException
executeInLock(String, TransactionCallback)
protected abstract java.lang.Object executeInLock(java.lang.String lockName, JobStoreSupport.TransactionCallback txCallback) throws JobPersistenceException
lockName
- The name of the lock to aquire, for example
"TRIGGER_ACCESS". If null, then no lock is aquired, but the
lockCallback is still executed in a transaction.
JobPersistenceException
protected void executeInNonManagedTXLock(java.lang.String lockName, JobStoreSupport.VoidTransactionCallback txCallback) throws JobPersistenceException
lockName
- The name of the lock to aquire, for example
"TRIGGER_ACCESS". If null, then no lock is aquired, but the
lockCallback is still executed in a non-managed transaction.
JobPersistenceException
executeInNonManagedTXLock(String, TransactionCallback)
protected java.lang.Object executeInNonManagedTXLock(java.lang.String lockName, JobStoreSupport.TransactionCallback txCallback) throws JobPersistenceException
lockName
- The name of the lock to aquire, for example
"TRIGGER_ACCESS". If null, then no lock is aquired, but the
lockCallback is still executed in a non-managed transaction.
JobPersistenceException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |