/// <summary>
 /// Implementation of message sending.
 /// </summary>
 void AsyncProcessor.IAsyncTask.Process()
 {
     try
     {
         if (_parent != null)
         {
             _parent.RaiseGeneric(new Function((int)ClusterCacheBase.OpCodes.NotifyBulkRemoval, new object[] { _key, _value, _reason, _operationContext, _eventContexts }));
         }
     }
     catch (Exception)
     {
     }
 }
Example #2
0
 /// <summary>
 /// Implementation of message sending.
 /// </summary>
 void AsyncProcessor.IAsyncTask.Process()
 {
     try
     {
         if (_parent != null)
         {
             Function func = new Function((int)ClusterCacheBase.OpCodes.DryPoll, new object[] { _operationContext }, true);
             _parent.RaiseGeneric(func);
         }
     }
     catch (Exception)
     {
     }
 }