Programming model distinguished by ubiquitous asynchronous communication.
EDIT Notice, I needed to make the reverse changes of this https://github.com/akka/akka/commit/ce014ece3568938b2036…
scala akka actor remote-actorsWhen should the Actor Model be used? It certainly doesn't guarantee deadlock-free environment. Actor A can wait for a message …
multithreading concurrency functional-programming actor actor-modelI have a very simple structure based on Akka actors in Scala, but I keep on receiving warnings about undelivered …
scala akka actor dead-letterIs there any way to inject dependencies in to the Azure Service Fabric Actor's constructor?
c# dependency-injection azure-service-fabric actorI'm trying to create a basic akka cluster on a Win 7 machine from this documentation: http://doc.akka.io/docs/…
scala akka actor akka-clusterI'm trying to figure out how to best handle database operations while using an actor system. indeed database operations are …
scala database-connection akka connection-pooling actorI am currently trying to get started with Akka and I am facing a weird problem. I've got the following …
scala routing actor akka fault-toleranceMy environment is eclipse, play, akka, and scala. I am getting an error when trying to create a remote master …
scala playframework actor akka remote-actorsI have an akka actor that send messages to itself: def receive = { while (...) { self ! "some message" } } I want to use …
scala akka actor throttling