Example #1
0
 public void ClearNotifyMsgQueueHandler()
 {
     lock (_syncRoot)
     {
         _notifyMsgQueueHandlers = null;
     }
 }
Example #2
0
 public void SetNotifyMsgQueueHandler(OnNotifyMsgQueueHandler msgQueueHandler)
 {
     lock (_syncRoot)
     {
         _notifyMsgQueueHandlers = msgQueueHandler;
     }
 }