gpt4 book ai didi

java - 使用非默认构造函数创建 akka 子 actor

转载 作者:行者123 更新时间:2023-11-29 10:18:24 24 4
gpt4 key购买 nike

谁能帮我解答这个问题。在 Java 中使用 akka 时,是否可以使用带参数的构造函数创建 akka childactor。因为我知道 master actor 负责创建 childactors。因此,如果我们有一个在其构造函数中接受参数的子 actor。

这是否意味着任何时候调用子 actor 时,master actor 都必须创建子 actor 的新实例,以便将参数传递给子 actor。

最佳答案

另一种方法是使用 UntypedActorFactory(至少在 akka 2.1.2 中):

ActorRef myActor = system.actorOf(new Props(new UntypedActorFactory() {
public UntypedActor create() {
return new MyActor("...");
}
}), "myactor");

see the docs here在“使用非默认构造函数创建 Actors”下

关于java - 使用非默认构造函数创建 akka 子 actor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11790107/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com