[
https://issues.apache.org/jira/browse/CAMEL-2654?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14323760#comment-14323760
]
Claus Ibsen commented on CAMEL-2654:
------------------------------------
Its the following 4 eips
- delay
- sampling
- threads
- throttle
> Delay and Throttle EIP - Should not have child outputs, which otherwise
> causes people to have to add .end() in Java DSL
> -----------------------------------------------------------------------------------------------------------------------
>
> Key: CAMEL-2654
> URL: https://issues.apache.org/jira/browse/CAMEL-2654
> Project: Camel
> Issue Type: Improvement
> Components: camel-core
> Reporter: Claus Ibsen
> Fix For: 3.0.0
>
>
> For example when used in onException it gets a bit confusing as you must have
> 2 end to end it
> {code:java}
> from("direct:start")
> .onException(Exception.class)
> .maximumRedeliveries(2)
> .backOffMultiplier(1.5)
> .handled(true)
> .delay(1000)
> .log("Halting for some time")
> .to("mock:halt")
> .end()
> .end()
> .to("mock:result");
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)