1
vote
3answers
51 views

Interact with Akka actor outside actors

I want to interact with Akka actors from my own thread. Currently, i do like so: val res = Await.result(aref ? GroupReceive(fromRank), timeout.duration).asInstanceOf[T] But I am unsure how this ...
1
vote
2answers
338 views

How to handle Java futures with Akka actors

I have a layered architecture in a Java web application. The UI layer is just Java, services are typed Akka actors and external service calls (WS, DB etc.) are wrapped in Hystrix commands. THe UI ...
1
vote
2answers
70 views

How to best implement a blocking/waiting actor?

I'm fairly new to Akka and writing concurrent applications and I'm wondering what's a good way to implement an actor that would wait for a redis list and once an item becomes available it will process ...
5
votes
2answers
218 views

Akka Actor ask and Type Safety

How can I use Akka Actor ask and maintain type safety? or avoid using ask in favour of tells? When calling ? or ask on an Akka Actor, a Future[Any] is returned and I have to do an explicit cast via ...
5
votes
1answer
157 views

How to preserve request contextual data in Akka

As a long time Java EE dev, I've used the MDC (Mapped Diagnostic Context) approach to deal with passing around contextual data relating to a request, e.g. a unique request token for tracking a request ...
0
votes
3answers
251 views

Java service with async method invocation

Given a FooService with read and write operations backed by a repository, I want to provide an asynchronous variant of it to be used in a Spring REST web service (potentially using Akka as it's ...
0
votes
1answer
225 views

how to work with promise in play 2.0 framework

i am working play 2.0 application with java.In that i am using promise for the Asynchronous sending of email.For that i followed http://www.playframework.org/documentation/2.0/JavaAsync I tried like ...
3
votes
1answer
908 views

Scalatra 2.1 Akka Futures Example

Does anybody know of a place where I could find an example of the classical "chat" application, using Akka Futures with Scalatra 2.1? The Futures example in the documentation is a bit trivial, and ...
161
votes
10answers
32k views

Good use case for Akka

I have heard lots of raving about Akka framework (Java/Scala service platform), but so far have not seen many actual examples of use cases it would be good for. So I would be interested in hearing ...