Azavea.Open.Common.Chronometer.ReallyBeginTiming C# (CSharp) Method

ReallyBeginTiming() private static method

Behind the scenes we tack onto the key the name of the thread, in case multiple threads are running the same named operation at the same time.
private static ReallyBeginTiming ( string keyWithThread ) : void
keyWithThread string Key consisting of the original key plus the thread name.
return void
        private static void ReallyBeginTiming(string keyWithThread)
        {
            lock (_operationStartTimes)
            {
                _operationStartTimes[keyWithThread] = DateTime.Now.Ticks;
            }
        }