Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Tip
titleAdvanced Scheduler

See also the Quartz component that supports much more advanced scheduling.

Tip
titleSpecify time in human friendly format

In Camel 2.3 onwards you can specify the time in human friendly syntax.

Options

Name

Default Value

Description

time

null

A java.util.Date the first event should be generated. If using the URI, the pattern expected is: yyyy-MM-dd HH:mm:ss or yyyy-MM-dd'T'HH:mm:ss.

pattern

null

Camel 1.6.2/2.0: Allows you to specify a custom Date pattern to use for setting the time option using URI syntax.

period

1000

If greater than 0, generate periodic events every period milliseconds.

delay

0

The number of milliseconds to wait before the first event is generated. Should not be used in conjunction with the time option.

fixedRate

false

Events take place at approximately regular intervals, separated by the specified period.

daemon

true

Specifies whether or not the thread associated with the timer endpoint runs as a daemon.

...