Akka.Routing.ConsistentHashingGroup.ToSurrogate C# (CSharp) Méthode

ToSurrogate() public méthode

Creates a surrogate representation of the current ConsistentHashingGroup.
public ToSurrogate ( ActorSystem system ) : ISurrogate
system ActorSystem The actor system that owns this router.
Résultat ISurrogate
        public override ISurrogate ToSurrogate(ActorSystem system)
        {
            return new ConsistentHashingGroupSurrogate
            {
                Paths = Paths,
            };
        }
    }