On 2011-10-10 1:19 PM, ebinsingh wrote:
>         context.addRoutes(new RouteBuilder() {
>             public void configure() {
>             
> from("quartz://myTimer?trigger.repeatInterval=2000&trigger.repeatCount=-1")
>                 .setBody().simple("I was fired at ${header.fireTime}")
>                 .to("jms:queue:test_request_1");
>             }
>         });
>
> rom the Camel - Users mailing list archive at Nabble.com.
Any reason you're not just using a timer
<https://camel.apache.org/timer.html> directly?

from("timer:myTimer?period=2000&fixedRate=true")

Reply via email to