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

ToSurrogate() 공개 메소드

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