Akka.Routing.RoundRobinGroup.ToSurrogate C# (CSharp) 메소드

ToSurrogate() 공개 메소드

Creates a surrogate representation of the current RoundRobinGroup.
public ToSurrogate ( ActorSystem system ) : ISurrogate
system ActorSystem The actor system that owns this router.
리턴 ISurrogate
        public override ISurrogate ToSurrogate(ActorSystem system)
        {
            return new RoundRobinGroupSurrogate
            {
                Paths = Paths,
            };
        }