On Jan 14, 2008, at 9:19 PM, Er1c wrote:
What's the Spring XML equivalent of the DSL:
from("seda:a").delayer(header("JMSTimestamp"), 3000).to("mock:result"); ?

I think it's this:

<route>
        <from uri="seda:a">
        <delayer>
                <simple>header.JMSTimestamp</simple>
                <to uri="mock:result" />
                <delay>3000</delay>
        </delayer>
</route>

- aaron

Reply via email to