Package | Description |
---|---|
mali.job | |
org.quartz |
The main package of Quartz, containing the client-side interfaces.
|
org.quartz.jobs | |
org.quartz.jobs.ee.ejb | |
org.quartz.jobs.ee.jms | |
org.quartz.jobs.ee.jmx | |
org.quartz.jobs.ee.mail | |
org.quartz.simpl |
Contains simple / light-weight implementations (with no dependencies on
external libraries) of interfaces required by the
org.quartz.core.QuartzScheduler.
|
org.quartz.spi |
Contains Service Provider Interfaces that can be implemented by those
wishing to create and use custom versions of Quartz back-end/behind-the-scenes
services.
|
Modifier and Type | Class and Description |
---|---|
class |
MaliJobquene |
Modifier and Type | Interface and Description |
---|---|
interface |
InterruptableJob
The interface to be implemented by
that provide a
mechanism for having their execution interrupted. |
interface |
StatefulJob
A marker interface for
s that
wish to have their state maintained between executions. |
Modifier and Type | Method and Description |
---|---|
Job |
JobExecutionContext.getJobInstance()
Get the instance of the
Job that was created for this
execution. |
Constructor and Description |
---|
JobExecutionContext(Scheduler scheduler,
TriggerFiredBundle firedBundle,
Job job)
Create a JobExcecutionContext with the given context data.
|
Modifier and Type | Class and Description |
---|---|
class |
FileScanJob
Inspects a file and compares whether it's "last modified date" has changed
since the last time it was inspected.
|
class |
NativeJob |
class |
NoOpJob
An implementation of Job, that does absolutely nothing - useful for system
which only wish to use
and , rather than writing
Jobs that perform work. |
Modifier and Type | Class and Description |
---|---|
class |
EJBInvokerJob
A
Job that invokes a method on an EJB. |
Modifier and Type | Class and Description |
---|---|
class |
SendDestinationMessageJob
A
Job that sends a javax.jms.Message to a
javax.jms.Destination . |
class |
SendQueueMessageJob
A
Job that sends a javax.jms.Message to a
javax.jms.Queue
The following properties are expected to be provided in the JobDataMap :
JMS_CONNECTION_FACTORY_JNDI - The JNDI name of the JMS Connection Factory. |
class |
SendTopicMessageJob
A
Job that sends a javax.jms.Message to a
javax.jms.Topic . |
Modifier and Type | Class and Description |
---|---|
class |
JMXInvokerJob
Generic JMX invoker Job.
|
Modifier and Type | Class and Description |
---|---|
class |
SendMailJob
A Job which sends an e-mail with the configured content to the configured
recipient.
|
Modifier and Type | Method and Description |
---|---|
Job |
SimpleJobFactory.newJob(TriggerFiredBundle bundle) |
Job |
PropertySettingJobFactory.newJob(TriggerFiredBundle bundle) |
Modifier and Type | Method and Description |
---|---|
Job |
JobFactory.newJob(TriggerFiredBundle bundle)
Called by the scheduler at the time of the trigger firing, in order to
produce a
Job instance on which to call execute. |