Akka.Cluster.Tools.Singleton.ClusterSingletonProxy.Props C# (CSharp) Method

Props() public static method

Faactory method for ClusterSingletonProxy Actor.Props.
public static Props ( string singletonManagerPath, Akka.Cluster.Tools.Singleton.ClusterSingletonProxySettings settings ) : Props
singletonManagerPath string /// The logical path of the singleton manager, e.g. `/user/singletonManager`, /// which ends with the name you defined in `actorOf` when creating the . ///
settings Akka.Cluster.Tools.Singleton.ClusterSingletonProxySettings Cluster singleton proxy settings.
return Props
        public static Props Props(string singletonManagerPath, ClusterSingletonProxySettings settings)
        {
            return Actor.Props.Create(() => new ClusterSingletonProxy(singletonManagerPath, settings)).WithDeploy(Deploy.Local);
        }