Contact Us 1-800-596-4880

Quartz Transport Reference

The Quartz transport provides support for scheduling events and for triggering new events. An inbound quartz endpoint can be used to trigger inbound events that can be repeated, such as every second. Outbound quartz endpoints can be used to schedule an existing event to fire at a later date. Users can create schedules using cron expressions, and events can be persisted in a database.

This transport makes use of the Quartz Project. The Quartz site has more generic information about how to work with Quartz.

Notes:

  • When running in an environment with multiple workers or nodes, a Quartz scheduler, by default, runs on each node, whereas a Poll Scope only runs on a single node. A Quartz scheduler can be configured to work this way but requires configuration of a JDBC JobStore.

  • When using a Quartz inbound endpoint, you cannot manage it through the Schedulers tab.

About Cron Expressions

A cron expression is a string comprised by six or seven fields separated by white space. Fields can contain any of the allowed values, along with various combinations of the allowed special characters for that field. The fields are as follows:

Field Name Mandatory Allowed Values Allowed Special Chars

Seconds

YES

0-59

, - * /

Minutes

YES

0-59

, - * /

Hours

YES

0-23

, - * /

Day of Month

YES

1-31

, - * ? / L W C

Month

YES

1-12 or JAN-DEC

, - * /

Day of Week

YES

1-7 or SUN-SAT

, - * ? / L C #

Year

NO

empty, 1970-2099

, - * /

Cron expressions can be as simple as this:
* * * * ? *

or more complex, like this:
0 0/5 14,18,3-39,52 ? JAN,MAR,SEP MON-FRI 2002-2010.

Following are some examples:

Expression Behavior

0 0 12 * * ?

Fire at 12pm (noon) every day

0 15 10 ? * *

Fire at 10:15am every day

0 15 10 * * ?

Fire at 10:15am every day

0 15 10 * * ? *

Fire at 10:15am every day

0 15 10 * * ? 2005

Fire at 10:15am every day during the year 2005

0 * 14 * * ?

Fire every minute starting at 2pm and ending at 2:59pm, every day

0 0/5 14 * * ?

Fire every 5 minutes starting at 2pm and ending at 2:55pm, every day

If you are not familiar with cron syntax, here is a good tutorial.

About Jobs

Jobs are used to perform an action when a time trigger occurs from the Quartz transport. Mule provides a number of jobs for generating and scheduling events. These are detailed below. Users can also write their own jobs and hook them in using the custom-job type included with Mule.

Connector

The Quartz connector is used to configure the default behavior for Quartz endpoints that reference the connector. Note if there is only one Quartz connector configured, all Quartz endpoints will use that connector.

Table 1. Attributes of <connector…​>
Name Type Required Default Description

scheduler-ref

string

no

Provides an implementation of the Quartz Scheduler interface. If no value is provided, a scheduler is retrieved from the StdSchedulerFactory. If no properties are provided, the getDefaultScheduler method is called. Otherwise, a new factory instance is created using the given properties, and a scheduler is retrieved using the getScheduler method.

Table 2. Child elements of <connector…​>
Name Cardinality Description

factory-property

0..*

Set a property on the factory (see scheduler-ref).

When setting the org.quartz.scheduler.instanceName factory property, be sure to avoid duplicate names.

The value of instanceName must be different for every Quartz connector running in the same Mule instance, even if in different applications.

<quartz:factory-property key="org.quartz.scheduler.instanceName" value="MuleScheduler1"/>

If Quartz connectors share the same value for instanceName property, these connectors could miss firing the scheduled jobs in the applications in which they exist.

Outbound Endpoint

An outbound Quartz endpoint allows existing events to be stored and fired at a later time/date. If you are using a persistent event store, the payload of the event must implement java.io.Serializable. You configure an org.quartz.Job implementation on the endpoint to tell it what action to take. Mule has some default jobs, but you can also write your own.

Table 3. Attributes of <outbound-endpoint…​>
Name Type Required Default Description

jobName

string

no

The name to associate with the job on the endpoint. This is only really used internally when storing events.

cronExpression

string

no

The cron expression to schedule events at specified dates/times. This attribute or repeatInterval is required. A cron expression is a string comprised by 6 or 7 fields separated by white space. Fields can contain any of the allowed values, along with various combinations of the allowed special characters for that field. See About Cron Expressions for field names, allowed values, and examples.

repeatInterval

long

no

The number of milliseconds between two events. This attribute or cronExpression is required.

repeatCount

integer

no

The number of events to be scheduled. This value defaults to -1, which means that the events will be scheduled indefinitely.

startDelay

long

no

The number of milliseconds that will elapse before the first event is fired.

Table 4. Child Elements of <outbound-endpoint…​>
Name Cardinality Description

abstract-job

1..1

A placeholder for Quartz jobs that can be set on the endpoint.

Inbound Endpoint

A Quartz inbound endpoint can be used to generate events. It is most useful when you want to trigger a flow at a given interval (or cron expression) rather than have an external event trigger the flow.

Table 5. Attributes of <inbound-endpoint…​>
Name Type Required Default Description

jobName

string

no

The name to associate with the job on the endpoint. This is only really used internally when storing events.

cronExpression

string

no

The cron expression to schedule events at specified dates/times. This attribute or repeatInterval is required. A cron expression is a string comprised by 6 or 7 fields separated by white space. Fields can contain any of the allowed values, along with various combinations of the allowed special characters for that field. See About Cron Expressions for field names, allowed values, and examples.

repeatInterval

long

no

The number of milliseconds between two events. This attribute or cronExpression is required.

repeatCount

integer

no

The number of events to be scheduled. This value defaults to -1, which means that the events will be scheduled indefinitely.

startDelay

long

no

The number of milliseconds that will elapse before the first event is fired.

Table 6. Child Elements of <inbound-endpoint…​>
Name Cardinality Description

abstract-job

1..1

A placeholder for Quartz jobs that can be set on the endpoint.

Endpoint

A global endpoint that can be used as a template to create inbound and outbound Quartz endpoints. Common configuration can be set on a global endpoint and then referenced using the @ref attribute on the local endpoint. Note that because jobs sometimes only work on inbound or outbound endpoints, they have to be set on the local endpoint.

Table 7. Attributes of <endpoint…​>
Name Type Required Default Description

jobName

string

no

The name to associate with the job on the endpoint. This is only really used internally when storing events.

cronExpression

string

no

The cron expression to schedule events at specified dates/times. This attribute or repeatInterval is required. A cron expression is a string comprised by 6 or 7 fields separated by white space. Fields can contain any of the allowed values, along with various combinations of the allowed special characters for that field. See About Cron Expressions for field names, allowed values, and examples.

repeatInterval

long

no

The number of milliseconds between two events. This attribute or cronExpression is required.

repeatCount

integer

no

The number of events to be scheduled. This value defaults to -1, which means that the events will be scheduled indefinitely.

startDelay

long

no

The number of milliseconds that will elapse before the first event is fired.

Table 8. Child Elements of <endpoint…​>
Name Cardinality Description

abstract-job

0..1

A placeholder for Quartz jobs that can be set on the endpoint.

Abstract Job

A placeholder for Quartz jobs that can be set on the endpoint.

Table 9. Attributes of <abstract-job…​>
Name Type Required Default Description

groupName

string

no

The group name of the scheduled job.

jobGroupName

string

no

The job group name of the scheduled job.

Abstract Inbound Job

A placeholder for Quartz jobs that can be set on inbound endpoints only.

Table 10. Attributes of <abstract-inbound-job…​>
Name Type Required Default Description

groupName

string

no

The group name of the scheduled job.

jobGroupName

string

no

The job group name of the scheduled job.

Event Generator Job

An inbound endpoint job that will trigger a new event for the flow according to the schedule on the endpoint. This is useful for periodically triggering a flow without the need for an external event to occur.

Table 11. Attributes of <event-generator-job…​>
Name Type Required Default Description

stateful

boolean

no

Determines if the job is persistent. If so, the job detail state will be persisted for each request. More importantly, each job triggered will execute sequentially. If the Job takes longer than the next trigger the next job will wait for the current job to execute.

Table 12. Child Elements of <event-generator-job…​>
Name Cardinality Description

payload

0..1

The payload of the newly created event. The payload can be a reference to a file, fixed string, or object configured as a Spring bean. If this value is not set, an event will be generated with an org.mule.transport.NullPayload instance.

Endpoint Polling Job

An inbound endpoint job that can be used to periodically read from an external source (via another endpoint). This can be useful for triggering time-based events from sources that do not support polling or for simply controlling the rate in which events are received from the source.

Table 13. Attributes of <endpoint-polling-job…​>
Name Type Required Default Description

stateful

boolean

no

Determines if the job is persistent. If so, the job detail state will be persisted for each request. More importantly, each job triggered will execute sequentially. If the Job takes longer than the next trigger the next job will wait for the current job to execute.

Table 14. Child Elements of <endpoint-polling-job…​>
Name Cardinality Description

job-endpoint

0..1

A reference to another configured endpoint from which events will be received.

Scheduled Dispatch Job

An outbound job that will schedule a job for dispatch at a later time/date. The event will get dispatched using the configured endpoint reference.

Table 15. Attributes of <scheduled-dispatch-job…​>

Name

Type

Required

Default

Description

stateful

boolean

no

Determines if the job is persistent. If so, the job detail state will be persisted for each request. More importantly, each job triggered will execute sequentially. If the Job takes longer than the next trigger the next job will wait for the current job to execute.

Table 16. Child Elements of <scheduled-dispatch-job…​>
Name Cardinality Description

job-endpoint

0..1

The endpoint used to dispatch the scheduled event. The preferred approach is to create a global endpoint and reference it using the ref attribute. However, you can also use the address attribute to define a URI endpoint (which supports expressions). You can use the timeout attribute to specify an arbitrary time-out value associated with the endpoint that can be used by jobs that block waiting to receive events.

Custom Job

A custom job can be configured on inbound or outbound endpoints. You can create and configure your own job implementation and use it on a Quartz endpoint. A custom job can be configured as a bean in the XML configuration and referenced using this job.

Table 17. Attributes of <custom-job…​>
Name Type Required Default Description

groupName

string

no

The group name of the scheduled job

jobGroupName

string

no

The job group name of the scheduled job.

job-ref

string

no

The bean name or ID of the custom job to use when this job gets executed.

Custom Job From Message

Allows a job to be stored on the current message. This can only be used on outbound endpoints. When the message is received, the job is read and the job is added to the scheduler with the current message. This allows for custom scheduling behavior determined by the message itself. Usually the flow or a transformer would create the job on the message based on application-specific logic. Any Mule-supported expressions can be used to read the job from the message. Typically, you add the job as a header, but an attachment could also be used.

Table 18. Attributes of <custom-job-from-message…​>
Name Type Required Default Description

groupName

string

no

The group name of the scheduled job.

jobGroupName

string

no

The job group name of the scheduled job.

Go Further