Interface and Description |
---|
org.quartz.StatefulJob
use DisallowConcurrentExecution and/or PersistJobDataAfterExecution annotations instead.
|
org.quartz.spi.TimeBroker
TimeBroker is not currently used in the Quartz code base.
|
Field and Description |
---|
org.quartz.impl.StdSchedulerFactory.PROP_DATASOURCE_DRIVER
Replaced with
PoolingConnectionProvider.DB_DRIVER |
org.quartz.impl.StdSchedulerFactory.PROP_DATASOURCE_MAX_CONNECTIONS
Replaced with
PoolingConnectionProvider.DB_MAX_CONNECTIONS |
org.quartz.impl.StdSchedulerFactory.PROP_DATASOURCE_PASSWORD
Replaced with
PoolingConnectionProvider.DB_PASSWORD |
org.quartz.impl.StdSchedulerFactory.PROP_DATASOURCE_URL
Replaced with
PoolingConnectionProvider.DB_URL |
org.quartz.impl.StdSchedulerFactory.PROP_DATASOURCE_USER
Replaced with
PoolingConnectionProvider.DB_USER |
org.quartz.impl.StdSchedulerFactory.PROP_DATASOURCE_VALIDATION_QUERY
Replaced with
PoolingConnectionProvider.DB_VALIDATION_QUERY |
org.quartz.impl.jdbcjobstore.Constants.STATE_MISFIRED
Whether a trigger has misfired is no longer a state, but
rather now identified dynamically by whether the trigger's next fire
time is more than the misfire threshold time in the past.
|
Method and Description |
---|
org.quartz.CronExpression.clone() |
org.quartz.utils.StringKeyDirtyFlagMap.containsTransientData()
JDBCJobStores no longer prune out transient data. If you
include non-Serializable values in the Map, you will now get an
exception when attempting to store it in a database.
|
org.quartz.utils.StringKeyDirtyFlagMap.getAllowsTransientData()
JDBCJobStores no longer prune out transient data. If you
include non-Serializable values in the Map, you will now get an
exception when attempting to store it in a database.
|
org.quartz.utils.StringKeyDirtyFlagMap.removeTransientData()
JDBCJobStores no longer prune out transient data. If you
include non-Serializable values in the Map, you will now get an
exception when attempting to store it in a database.
|
org.quartz.impl.jdbcjobstore.StdJDBCDelegate.selectNextFireTime(Connection)
Does not account for misfires.
|
org.quartz.impl.jdbcjobstore.DriverDelegate.selectNextFireTime(Connection)
Does not account for misfires.
|
org.quartz.impl.jdbcjobstore.StdJDBCDelegate.selectTriggerToAcquire(Connection, long, long)
- This remained for compatibility reason. Use
StdJDBCDelegate.selectTriggerToAcquire(Connection, long, long, int) instead. |
org.quartz.impl.jdbcjobstore.DriverDelegate.selectTriggerToAcquire(Connection, long, long)
- This remained for compatibility reason. Use
DriverDelegate.selectTriggerToAcquire(Connection, long, long, int) instead. |
org.quartz.utils.StringKeyDirtyFlagMap.setAllowsTransientData(boolean)
JDBCJobStores no longer prune out transient data. If you
include non-Serializable values in the Map, you will now get an
exception when attempting to store it in a database.
|
Copyright 2001-2019, Terracotta, Inc.