예제 #1
0
 public static void LogAllStatistics()
 {
     lock (locker) {
         for (int i = 0; i < queueList.Count; i++)
         {
             FastQueueImpl <T> queue = queueList[i];
             queue.LogStatistics();
         }
     }
 }
예제 #2
0
 public void LogStats()
 {
     FastQueueImpl <QueueItem> .LogAllStatistics();
 }