/// <summary>
 /// Implementation of message sending.
 /// </summary>
 void AsyncProcessor.IAsyncTask.Process()
 {
     try
     {
         if (_parent != null)
         {
             _parent.RaiseCustomRemoveCalbackNotifier(_key, _entry, _reason, false, _operationContext, _eventContext);
         }
     }
     catch (Exception)
     {
     }
 }
Example #2
0
 /// <summary>
 /// Implementation of message sending.
 /// </summary>
 void AsyncProcessor.IAsyncTask.Process()
 {
     try
     {
         if (_parent != null)
         {
             if (_entry != null)
             {
                 _entry.MarkInUse(NCModulesConstants.Asynctask);
             }
             _parent.RaiseCustomRemoveCalbackNotifier(_key, _entry, _reason, false, _operationContext, _eventContext);
         }
     }
     catch (Exception)
     {
     }
 }