Ilkar
Ilkar

Reputation: 2177

Fuse esb - using quartz

i want to build simple copy from folder to folder application using camel:

  <camelContext id="camel" xmlns="http://camel.apache.org/schema/spring">
  <route>
    <from uri="file:src/data?noop=true"/>
    <to uri="file:src/data/new"/>
  </route>
  </camelContext>

I wanted to add quartz to copy file every 5 seconds.

I found something like this:

<bean id="quartz" class="org.apache.camel.component.quartz.QuartzComponent">
    <property name="startDelayedSeconds" value="5"/>
</bean>

but i don't know how to use it to in my example.

Please help

Upvotes: 1

Views: 403

Answers (1)

Christian Schneider
Christian Schneider

Reputation: 19606

You do not need to use quartz. Just change your from: file:src/data?noop=true&consumer.delay=5000

Upvotes: 2

Related Questions