标签: akka akka-remote-actor
我创建了这个演员:
ActorRef eventActor = system.actorOf(Props.create(EventActor.class,1),name);
现在,我想要检索道具1,但我不能。你能救我吗?
答案 0 :(得分:0)
在演员中,您可以使用Props(Scala)或context.props(Java)访问用于创建它的getContext().props()。
Props
context.props
getContext().props()