Akka.Cluster.Tools.Singleton.ClusterSingletonProxy.Props C# (CSharp) Метод

Props() публичный статический Метод

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.
Результат Props
        public static Props Props(string singletonManagerPath, ClusterSingletonProxySettings settings)
        {
            return Actor.Props.Create(() => new ClusterSingletonProxy(singletonManagerPath, settings)).WithDeploy(Deploy.Local);
        }