Hi Behard, for reliability on fail-over you can use PersistentActor <http://doc.akka.io/docs/akka/2.3.6/scala/persistence.html> with AtLeastOnceDelivery trait. For priority management you can look at Mailbox <http://doc.akka.io/docs/akka/2.3.6/scala/mailboxes.html> implementations that support priority handling.
On Mon, Sep 1, 2014 at 8:23 AM, Behrad Zari <[email protected]> wrote: > I'm new to akka, since I have some Erlang experience it was looking > familiar for me at first step. We are going to rewrite a SMS > aggregator/gateway whose job is to route messages between different SMSC > endpoints. I'm trying to it with least complexity (akka + camel) without > any Message Broker involved. > I want to here your points How well can akka play a message broker role in > my case? > > We will be charged twice if we send a message twice (don't think we want > at-least-once reliability) > We need some reliability and failover not to miss many messages. > We may need priority Queues as well later. > > -- > >>>>>>>>>> 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. > -- Martynas Mickevičius Typesafe <http://typesafe.com/> – Reactive <http://www.reactivemanifesto.org/> Apps on the JVM -- >>>>>>>>>> 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.
