gpt4 book ai didi

java - 从 Akka 中的非参与者发送消息

转载 作者:搜寻专家 更新时间:2023-10-31 19:55:52 25 4
gpt4 key购买 nike

如果我打电话

actorRef.tell("MSG", null);

来自非 Actor

它仍然是线程安全的吗?异步会立即完成吗?

消息是不可变的。

基本上我的代码是:

class NonActor {
....

public void tellTest() {

actorRef.tell("MSG", null);
}
}

最佳答案

基本上 actorRef.tell("MSG", null); 创建一条类似的记录

(actorRef, Envelope(msg, sender))

并将其放入ActorSystem的消息队列中。因此 tell 不以任何方式链接到 actor。 tell 方法本身无疑是线程安全的。

关于java - 从 Akka 中的非参与者发送消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18645457/

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