Akka.Routing.ScatterGatherFirstCompletedGroup.ScatterGatherFirstCompletedGroup C# (CSharp) Method

ScatterGatherFirstCompletedGroup() public method

Initializes a new instance of the ScatterGatherFirstCompletedGroup class.
public ScatterGatherFirstCompletedGroup ( 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 interval. /// ///
return System
        public ScatterGatherFirstCompletedGroup(Config config)
            : base(config.GetStringList("routees.paths"))
        {
            Within = config.GetTimeSpan("within");
        }

Same methods

ScatterGatherFirstCompletedGroup::ScatterGatherFirstCompletedGroup ( IEnumerable routees, System.TimeSpan within ) : System
ScatterGatherFirstCompletedGroup::ScatterGatherFirstCompletedGroup ( IEnumerable paths, System.TimeSpan within ) : System
ScatterGatherFirstCompletedGroup::ScatterGatherFirstCompletedGroup ( System.TimeSpan within ) : System