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