I have written Akka Camel (extends Akka UntypedConsumerActor ) Actor which is consuming messages from the JMS Queue. I want this Consumer to be (Point#1) asynchronous, at the same time (Point#2)if a messages fails in processing by child actor then JMS Queue can redeliver, So to achieve this I have overridden autoack method in Akka Camel Actor (extends Akka UntypedConsumerActor) and returning false from this overridden method also when each messages get proceed successfully by Child Actor explicitly acknowledging *"Success"* message to Camel Endpoint. But I am observing Consumer Actor (extends Akka UntypedConsumerActor ) is processing messages sequentially so I am loosing my first point to making Akka Camel Consumer Actor (point#1)asynchronous.
Please help me on this - *Needs to make Akka Camel consumer Actor asynchronous and at the same time needs jms message redelivery * -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
