Re: [akka-user] Spring Scheduler with AKKA: connot create children while terminating or terminated

2016-05-30 Thread Akka Team
That error is thrown if you try to create actors in a terminated actor system, probably because you are somehow re-using the original actor system after it has terminated.​ -- Johan -- >> Read the docs: http://akka.io/docs/ >> Check the FAQ: >> http://doc.akka.

[akka-user] Spring Scheduler with AKKA: connot create children while terminating or terminated

2016-05-26 Thread Yan Pei
I am using Spring IOC to inject Beans and created the instance inside actorSystem. actorSystem.actorOf(SpringExtProviderInstance.get(actorSystem).props( "mainActor"), "mainActor"); After Spring Scheduler running, things are good in the first run, but the second run triggered the above exception