Akka 经典:如何从 AbstractActor 生成儿童演员?
Akka classic: how do I spawn a child actor from an AbstractActor?
我正在阅读 Akka's documentation 类型演员,它描述了如何生成子演员。
但是,我找不到使用经典 AbstractActor 实现相同目的的方法。
我什至不知道这是否可能。
当前的 Akka 文档将基于 AbstractActor
的 actors 称为“经典”actors。
这是经典演员的文档:
https://doc.akka.io/docs/akka/current/index-classic.html
这里有你要找的:
https://doc.akka.io/docs/akka/current/actors.html#creating-actors-with-props
Using the ActorSystem will create top-level actors, supervised by the actor system’s provided guardian actor while using an actor’s context will create a child actor.
我正在阅读 Akka's documentation 类型演员,它描述了如何生成子演员。
但是,我找不到使用经典 AbstractActor 实现相同目的的方法。
我什至不知道这是否可能。
当前的 Akka 文档将基于 AbstractActor
的 actors 称为“经典”actors。
这是经典演员的文档: https://doc.akka.io/docs/akka/current/index-classic.html
这里有你要找的: https://doc.akka.io/docs/akka/current/actors.html#creating-actors-with-props
Using the ActorSystem will create top-level actors, supervised by the actor system’s provided guardian actor while using an actor’s context will create a child actor.