Elders.Hystrix.NET.HystrixCommandPropertiesSetter.WithMetricsRollingStatisticalWindow C# (CSharp) Method

WithMetricsRollingStatisticalWindow() public method

public WithMetricsRollingStatisticalWindow ( System.TimeSpan value ) : HystrixCommandPropertiesSetter
value System.TimeSpan
return HystrixCommandPropertiesSetter
        public HystrixCommandPropertiesSetter WithMetricsRollingStatisticalWindow(TimeSpan value)
        {
            MetricsRollingStatisticalWindowInMilliseconds = (int)value.TotalMilliseconds;
            return this;
        }
        public HystrixCommandPropertiesSetter WithMetricsRollingStatisticalWindowBuckets(int value)