RE: [akka-user] Best Strategy to Aggregate Multiple Actors Response

2015-06-26 Thread Matheus Lima
Yes. And it is a simple form do avoid problems with message stream. -Mensagem Original- De: Konrad Malawski kt...@typesafe.com Enviada em: ‎26/‎06/‎2015 09:32 Para: Akka User List akka-user@googlegroups.com Assunto: Re: [akka-user] Best Strategy to Aggregate Multiple Actors Response If I

Re: [akka-user] Best Strategy to Aggregate Multiple Actors Response

2015-06-26 Thread Konrad Malawski
: ‎24/‎06/‎2015 00:23 Para: akka-user@googlegroups.com Assunto: [akka-user] Best Strategy to Aggregate Multiple Actors Response Does this work for you? http://doc.akka.io/docs/akka/snapshot/contrib/aggregator.html -- Read the docs: http://akka.io/docs/ Check the FAQ: http

RE: [akka-user] Best Strategy to Aggregate Multiple Actors Response

2015-06-24 Thread Matheus Lima
@googlegroups.com akka-user@googlegroups.com Assunto: [akka-user] Best Strategy to Aggregate Multiple Actors Response Does this work for you? http://doc.akka.io/docs/akka/snapshot/contrib/aggregator.html -- Read the docs: http://akka.io/docs/ Check the FAQ: http://doc.akka.io/docs

[akka-user] Best Strategy to Aggregate Multiple Actors Response

2015-06-23 Thread Jim Hazen
Does this work for you? http://doc.akka.io/docs/akka/snapshot/contrib/aggregator.html -- 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

[akka-user] Best Strategy to Aggregate Multiple Actors Response

2015-06-23 Thread matheuslimaufc
Hello, I Have an actor A. The Actor A send a message to B, C, D, and E. How can I aggregate the responses from this actors? I don't want use ask. The actor A also should process another request when receive the responses of all actors (B, C, D and E). What is the best way? Thank you. --