You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2009/01/15 21:22:59 UTC

[jira] Commented: (CAMEL-1264) Spring DSL - Delay use attribute for constant delay

    [ https://issues.apache.org/activemq/browse/CAMEL-1264?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=48743#action_48743 ] 

Claus Ibsen commented on CAMEL-1264:
------------------------------------

Note there is a master JIRA ticket for Spring DSL issues that Jonathan has assigned.

> Spring DSL - Delay use attribute for constant delay
> ---------------------------------------------------
>
>                 Key: CAMEL-1264
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1264
>             Project: Apache Camel
>          Issue Type: Improvement
>          Components: camel-spring
>    Affects Versions: 1.5.0
>            Reporter: Claus Ibsen
>             Fix For: 2.0.0
>
>
> The Spring DSL for delay is not good for constant delay, to eg use 3000 millis then you need to add a sub empty expression that is very confusing.
> {code}
>     <route>
>       <from uri="seda:b"/>
>       <delay>
>         <expression/>
>         <delayTime>3000</delayTime>
>       </delay>
>       <to uri="mock:result"/>
>     </route>
> {code}
> We should use an attrbute for constant delay instead. So delayTime is an attribute instead on delay.
> {code}
> <delay delayTime="3000"/>
> <to uri="mock:result"/>
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.