Akka.Cluster.Tools.PublishSubscribe.DistributedPubSubMediator.Props C# (CSharp) Method

Props() public static method

public static Props ( DistributedPubSubSettings settings ) : Props
settings DistributedPubSubSettings
return Props
        public static Props Props(DistributedPubSubSettings settings)
        {
            return Actor.Props.Create(() => new DistributedPubSubMediator(settings)).WithDeploy(Deploy.Local);
        }