[akka-user] Akka Actor Hierarchy Question

2016-03-13 Thread Neale Genereux
Hello all, I'm playing around with Akka in conjunction with the Play framework, working in Java. I have a reasonable understanding of how the actor system works in general, but I need some help wrapping my head around how to set up the system efficiently. Let's take the Chat server example.

Re: [akka-user] awaitTermination not working?

2016-03-13 Thread Eduardo Fernandes
Hum... it's look like an actor which uses an asynchronous DB persistor from an external library sometimes launches a thread. When the thread is running the shutdown() does nothing and the awaitTermination() doesn't block. If I stop the thread (I have to say that in a not very documented way)

[akka-user] Akka game state

2016-03-13 Thread Владимир Морозов
Hi All, I have some simple Actor: case class Item(id: String, description: String) object Player { sealed trait PlayerMessage case class PickupItem(item: Item) case class GiveItem(itemId: String, player: ActorRef) case object ShowInventory def props(): Props =