Exemplo n.º 1
0
 public QueueWorker(MyQueueManager <T> .QueueSubscriberHandler handler)
 {
     IsBusy  = false;
     Handler = handler;
 }
Exemplo n.º 2
0
 public static MyQueueManager <T> GetInstance()
 {
     _instance = _instance ?? new MyQueueManager <T>();
     return(_instance);
 }