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

TailChoppingGroup() 공개 메소드

Initializes a new instance of the TailChoppingGroup class.
public TailChoppingGroup ( Config config ) : System
config Akka.Configuration.Config /// The configuration to use to lookup paths used by the group router. /// /// /// If 'routees.path' is defined in the provided configuration then those paths will be used by the router. /// If 'within' is defined in the provided configuration then that will be used as the timeout. /// If 'tail-chopping-router.interval' is defined in the provided configuration then that will be used as the interval. /// ///
리턴 System
        public TailChoppingGroup(Config config)
            : base(config.GetStringList("routees.paths").ToArray())
        {
            _within = config.GetTimeSpan("within");
            _interval = config.GetTimeSpan("tail-chopping-router.interval");
        }

Same methods

TailChoppingGroup::TailChoppingGroup ( string routeePaths, System.TimeSpan within, System.TimeSpan interval ) : System