seda endpoint to copy (multicast) exchange to multiple consumers
----------------------------------------------------------------

                 Key: CAMEL-2272
                 URL: https://issues.apache.org/activemq/browse/CAMEL-2272
             Project: Apache Camel
          Issue Type: Improvement
          Components: camel-core
    Affects Versions: 2.1.0
         Environment: All
            Reporter: Hendy Irawan


When there are two or more consumers annotated with 
@Consume(uri="seda:channel"), seda endpoint is not delivering the message to 
all channels (Publish-Subscribe mechanism).

To implement the said Publish-Subscribe mechanism we must use explicit routing 
with <multicast> element:

<from uri="seda:channel" />
<multicast>
  <to uri="...." />
  <to uri="...." />
</multicast>

I propose to improve the seda component so that multicasting (copying the 
exchange) is automatically done when multiple consumers are encountered.

Original thread: 
http://old.nabble.com/Implementing-Publish-Subscribe-Channel-to26654086.html

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

Reply via email to