It looks like the Spring XML never got filled out in the docs:
http://activemq.apache.org/camel/delayer.html
What's the Spring XML equivalent of the DSL:
from("seda:a").delayer(header("JMSTimestamp"), 3000).to("mock:result"); ?
I found a pretty close reference translation for the aggregator:
DSL:
from("direct:start").aggregator(header("cheese")).to("mock:result"); =>
Spring XML:
<route>
<from uri="direct:start"/>
<aggregator>
<simple>header.cheese</simple>
<to uri="mock:result"/>
</aggregator>
</route>
But I'm not sure howto pass the timer parameter into the delayer() call?
Thanks!
-Eric
--
View this message in context:
http://www.nabble.com/Spring-XML-for-the-Delayer-Design-Pattern--tp14826213s22882p14826213.html
Sent from the Camel - Users mailing list archive at Nabble.com.