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