Akka.Cluster.ClusterActorRefProvider.Init C# (CSharp) Method

Init() public method

public Init ( ActorSystemImpl system ) : void
system ActorSystemImpl
return void
        public override void Init(ActorSystemImpl system)
        {
            //Complete the usual RemoteActorRefProvider initializations - need access to transports and RemoteWatcher before clustering can work
            base.Init(system);

            // initialize/load the Cluster extension
            Cluster.Get(system);
        }