ITargetRateThrottler
namespace Relativity.Transfer
{
public interface ITargetRateThrottler
{
void ThrottleToMaxAllowedValue(ClientConfiguration configuration);
int ThrottleToMaxAllowedValue(int targetRateMbps);
}
}