Re: [akka-user] Futures, Ask, and receive invocations. How are they handled in Akka?

2016-03-25 Thread Mohammed Al-Mahfoudh
Michael, thank you so much! this answers all my questions. Fantastic and clean how these are done under the hood. I will make sure to stick closely to the mediating temp holding the future then resolving it. Kudos, Mo On Friday, March 25, 2016 at 3:09:51 PM UTC-6, Michael Frank wrote: > > On

[akka-user] Slf4j Akka adapter

2016-03-25 Thread Pedro Larroy
Hi there I have been often frustrated by trying to combine traits that would use an slf4j logger inside Akka. First because if you mix ActorLogging the "log" is not compatibe with Slf4j Logger. Second because if you use Slf4j logging inside your libraries and utilities, it will block your

Re: [akka-user] Futures, Ask, and receive invocations. How are they handled in Akka?

2016-03-25 Thread Derek Williams
The sender for the message will be linked back to the specific Future. As long as the original sender is used to reply, the expected Future will be completed. On Thu, Mar 24, 2016 at 7:28 PM Mohammed Al-Mahfoudh < mohammed.mahfo...@gmail.com> wrote: > Hi there, > > > We are developing a tool to