Lucene.Net.Search.TimeLimitingCollector.TimerThread.TimerThread C# (CSharp) Method

TimerThread() private method

TimerThread provides a pseudo-clock service to all searching threads, so that they can count elapsed time with less overhead than repeatedly calling System.currentTimeMillis. A single thread should be created to be used for all searches.
private TimerThread ( ) : System
return System
			internal TimerThread():base("TimeLimitedCollector timer thread")
			{
				this.IsBackground = true;
			}
			
TimeLimitingCollector.TimerThread