Re: [akka-user] Actor creation memory consistency

2016-12-21 Thread Roland Kuhn
The answer lies in UnstartedCell, but beware that this code may be morally challenging: it uses a Lock ;-) Regards, Roland Sent from my iPhone > On 21 Dec 2016, at 08:02, stella wrote: > > I'm trying to understand how actor creating is being performed internally. > So, once we created our A

[akka-user] Actor creation memory consistency

2016-12-20 Thread stella
I'm trying to understand how actor creating is being performed internally. So, once we created our ActorSystem object we can start a top level actor like this: val system = ActorSystem("system", config) val ref = system.actorOf(MyActor.props, "myactor") Internally, it will invoke *ActorRefProv