[ 
https://issues.apache.org/jira/browse/CAMEL-1121?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Claus Ibsen resolved CAMEL-1121.
--------------------------------

    Resolution: Later
      Assignee: Claus Ibsen

Lets close old ticket that are not in demand.
                
> create a composite component so we can easily consume from multiple endpoints 
> , do remoting over multiple endpoints or expose beans on multiple endpoints
> ---------------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: CAMEL-1121
>                 URL: https://issues.apache.org/jira/browse/CAMEL-1121
>             Project: Camel
>          Issue Type: Improvement
>            Reporter: james strachan
>            Assignee: Claus Ibsen
>             Fix For: Future
>
>
> When using the bean integration
> http://activemq.apache.org/camel/bean-integration.html
> it'd be great if we could use a single endpoint by reference or by URI; which 
> results in messages being consumed from or sent to multiple endpoints.
> So folks could create a composite endpoint something like this...
> {code}
> CompositeEndpoint myComposite = CompositeEndpoint.newInstance(endpoint1, 
> endpoint2, endpoint3, ...);
> CompositeEndpoint myComposite = CompositeEndpoint.newInstance(uri1, uri2, 
> uri3, ...);
> {code}
> Or in XML
> {code}
> <compositeEndpoint id="myComposite">
>   <endpoint uri="foo"/>
>   <endpoint uri="bar"/>
>    ...
> {code}
> Then referring to one endpoint would allow multiplexing over multiple 
> endpoints
> e.g. we could do things like
> {code}
> class Cheese {
>   @Consumer(ref='myComposite")
>   public void onSomething(String cheese) {...}
> }
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to