Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在已经死掉的 ActorRef 上调用 context.watch() ,我是否保证仍会收到终止消息?
另外,在收到关于特定参与者的终止消息后,我还需要调用 unwatch() 吗?
另外,watch() 调用引用计数了吗?如果我调用 watch() 两次,然后调用 unwatch() 一次,我是否保证仍会收到终止消息?
我认为文档很清楚:
“一个重要的特性是,无论监控请求和目标终止发生的顺序如何,消息都会被传递,即即使在注册时目标已经死亡,您仍然会收到消息。”
而且,你不需要取消观看,因为演员不能死两次,而且它不被引用计数。它是二进制的。
干杯,√</p>