Amazon.Runtime.Internal.CapacityManager.CapacityManager C# (CSharp) Method

CapacityManager() public method

public CapacityManager ( int throttleRetryCount, int throttleRetryCost, int throttleCost ) : System
throttleRetryCount int
throttleRetryCost int
throttleCost int
return System
        public CapacityManager(int throttleRetryCount, int throttleRetryCost, int throttleCost)
        {
            THROTTLE_RETRY_REQUEST_COST = throttleRetryCost;
            THROTTLED_RETRIES = throttleRetryCount;
            THROTTLE_REQUEST_COST = throttleCost;
        }