Akka.Cluster.ClusterScope.WithFallback C# (CSharp) Method

WithFallback() public method

Creates a new Akka.Actor.Scope from this scope using another Akka.Actor.Scope to backfill options that might be missing from this scope. This method ignores the given scope and returns the singleton instance of this scope.
public WithFallback ( Akka.Actor.Scope other ) : Akka.Actor.Scope
other Akka.Actor.Scope The used for fallback configuration.
return Akka.Actor.Scope
        public override Scope WithFallback(Scope other)
        {
            return Instance;
        }