Amazon.Runtime.Internal.CapacityManager.CapacityManager C# (CSharp) Méthode

CapacityManager() public méthode

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