Re: [akka-user] Akka game state

2016-03-20 Thread Konrad Malawski
On Sun, Mar 13, 2016 at 7:12 PM, Владимир Морозов wrote: > If two Player's actors live in two different remote actor systems - how > safely transfer item from one player to other (read transactionally or > guaranteed) > We don't do distributed transactions, they're the

Re: [akka-user] Akka game state

2016-03-19 Thread Владимир Морозов
Thank you, I dig in it :) пятница, 18 марта 2016 г., 20:17:57 UTC+3 пользователь Konrad Malawski написал: > > > On Sun, Mar 13, 2016 at 7:12 PM, Владимир Морозов > wrote: > >> If two Player's actors live in two different remote actor systems - how >> safely transfer item

[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 =