Amazon.Runtime.Internal.Util.RequestMetrics.SetCounter C# (CSharp) Метод

SetCounter() приватный Метод

Sets a counter for a specific metric.
private SetCounter ( Metric metric, long value ) : void
metric Metric
value long
Результат void
        internal void SetCounter(Metric metric, long value)
        {
            if (!IsEnabled) return;

            lock (metricsLock)
            {
                Counters[metric] = value;
            }
        }
        /// <summary>