Package | Description |
---|---|
org.quartz |
The main package of Quartz, containing the client-side interfaces.
|
org.quartz.impl.jdbcjobstore | |
org.quartz.listeners | |
org.quartz.utils |
Modifier and Type | Method and Description |
---|---|
Key |
Trigger.getKey() |
Key |
JobDetail.getKey() |
Modifier and Type | Method and Description |
---|---|
Key |
FiredTriggerRecord.getJobKey() |
Key |
FiredTriggerRecord.getTriggerKey() |
Key[] |
StdJDBCDelegate.selectMisfiredTriggers(Connection conn,
long ts)
Get the names of all of the triggers that have misfired.
|
Key[] |
DriverDelegate.selectMisfiredTriggers(Connection conn,
long ts)
Get the names of all of the triggers that have misfired - according to
the given timestamp.
|
Key[] |
StdJDBCDelegate.selectMisfiredTriggersInGroupInState(Connection conn,
String groupName,
String state,
long ts)
Get the names of all of the triggers in the given group and state that
have misfired.
|
Key[] |
DriverDelegate.selectMisfiredTriggersInGroupInState(Connection conn,
String groupName,
String state,
long ts)
Get the names of all of the triggers in the given group and state that
have misfired - according to the given timestamp.
|
Key[] |
StdJDBCDelegate.selectMisfiredTriggersInState(Connection conn,
String state,
long ts) |
Key[] |
DriverDelegate.selectMisfiredTriggersInState(Connection conn,
String state,
long ts)
Get the names of all of the triggers in the given state that have
misfired - according to the given timestamp.
|
Key |
StdJDBCDelegate.selectTriggerForFireTime(Connection conn,
long fireTime)
Select the trigger that will be fired at the given fire time.
|
Key |
DriverDelegate.selectTriggerForFireTime(Connection conn,
long fireTime)
Select the trigger that will be fired at the given fire time.
|
Key[] |
StdJDBCDelegate.selectTriggerNamesForJob(Connection conn,
String jobName,
String groupName)
Get the names of all of the triggers associated with the given job.
|
Key[] |
DriverDelegate.selectTriggerNamesForJob(Connection conn,
String jobName,
String groupName)
Get the names of all of the triggers associated with the given job.
|
Key[] |
StdJDBCDelegate.selectTriggersInState(Connection conn,
String state)
Select all of the triggers in a given state.
|
Key[] |
DriverDelegate.selectTriggersInState(Connection conn,
String state)
Select all of the triggers in a given state.
|
Key[] |
StdJDBCDelegate.selectVolatileJobs(Connection conn) |
Key[] |
DriverDelegate.selectVolatileJobs(Connection conn)
Get the names of all of the jobs that are volatile.
|
Key[] |
StdJDBCDelegate.selectVolatileTriggers(Connection conn) |
Key[] |
DriverDelegate.selectVolatileTriggers(Connection conn)
Get the names of all of the triggers that are volatile.
|
Modifier and Type | Method and Description |
---|---|
void |
FiredTriggerRecord.setJobKey(Key key) |
void |
FiredTriggerRecord.setTriggerKey(Key key) |
Modifier and Type | Method and Description |
---|---|
void |
JobChainingJobListener.addJobChainLink(Key firstJob,
Key secondJob)
Add a chain mapping - when the Job identified by the first key completes
the job identified by the second key will be triggered.
|
Modifier and Type | Method and Description |
---|---|
Key |
TriggerStatus.getJobKey() |
Key |
TriggerStatus.getKey() |
Modifier and Type | Method and Description |
---|---|
void |
TriggerStatus.setJobKey(Key jobKey) |
void |
TriggerStatus.setKey(Key key) |
Copyright © 2015. All rights reserved.