Is there an event in Akka.net cluster for when my node has joined a cluster?
问题 In my Akka.Net cluster I have several nodes. There is communication that I'd like to initiate when I've successfully joined the cluster. I can see in the log that I'm welcome to the cluster: Welcome from [akka.tcp://Animatroller@hakan-el:8899] but I can't see any events I can subscribe to that are raised for this. 回答1: Usually what you want in that case is to subscribe to ClusterEvent.MemberUp , which current actor will receive, once new node will become part of the cluster. Example of actor