Top "Actor" questions

Programming model distinguished by ubiquitous asynchronous communication.

Akka 2.1 minimal remote actor example

EDIT Notice, I needed to make the reverse changes of this https://github.com/akka/akka/commit/ce014ece3568938b2036…

scala akka actor remote-actors
When should one use the Actor model?

When 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-model
Different Scala Actor Implementations Overview

I'm trying to find the 'right' actor implementation. I realized there is a bunch of them and it's a bit …

scala actor lift scalaz akka
Dead-letter in Akka Scala actors

I have a very simple structure based on Akka actors in Scala, but I keep on receiving warnings about undelivered …

scala akka actor dead-letter
Azure service fabric actor dependency injection

Is there any way to inject dependencies in to the Azure Service Fabric Actor's constructor?

c# dependency-injection azure-service-fabric actor
akka cluster seed nodes give error: dropping message for non-local recipient

I'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-cluster
AKKA Actor and DataBase Operation

I'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 actor
Akka Actor not terminating if an exception is thrown

I 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-tolerance
Actor Name is not Unique InvalidActorNameException

My environment is eclipse, play, akka, and scala. I am getting an error when trying to create a remote master …

scala playframework actor akka remote-actors
How to get the actor system reference from inside the actor

I have an akka actor that send messages to itself: def receive = { while (...) { self ! "some message" } } I want to use …

scala akka actor throttling