Exemplo n.º 1
0
 public bool TryGetQueue(string fixedName, out WorkQueueModel workQueueModel)
 {
     lock (SortLock)
     {
         return(_sortedList.TryGetValue(fixedName, out workQueueModel));
     }
 }
Exemplo n.º 2
0
 public void Add(WorkQueueModel workQueueModel)
 {
     lock (SortLock)
     {
         _sortedList.Add(workQueueModel.Name, workQueueModel);
     }
 }