In Akka, what happens if I look () dead ActorRef?

If I call context.watch () on an ActorRef that is already dead, am I still getting a completion message?

Also, after receiving a completion message regarding a particular actor, do I still need to call unwatch ()?

Also, are watch () links counted? If I call watch () twice and then unatch (), I'm sure I still get completion messages?

+5
source share
1 answer

I think the documentation is pretty clear:

" , , , .. , .

, , . .

Cheers, √

+6

All Articles