SIL.FieldWorks.WordWorks.Parser.ParserScheduler.GetQueueSize C# (CSharp) Method

GetQueueSize() public method

returns the number of the Wordforms in the low priority queue.
public GetQueueSize ( ParserPriority priority ) : int
priority ParserPriority
return int
		public int GetQueueSize(ParserPriority priority)
		{
			CheckDisposed();

			lock (SyncRoot)
				return m_queueCounts[(int) priority];
		}