Azavea.Open.Common.Chronometer.ReallyBeginTiming C# (CSharp) 메소드

ReallyBeginTiming() 개인적인 정적인 메소드

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.
리턴 void
        private static void ReallyBeginTiming(string keyWithThread)
        {
            lock (_operationStartTimes)
            {
                _operationStartTimes[keyWithThread] = DateTime.Now.Ticks;
            }
        }