public void AsyncAddToIndex(object key, CacheEntry value, OperationContext operationContext)
 {
     lock (_asyncProcessor)
     {
         _asyncProcessor.Enqueue(new IndexAddTask(this, key, value, operationContext));
     }
 }
Example #2
0
 public void AsyncAddToIndex(object key, CacheEntry value)
 {
     lock (_asyncProcessor)
     {
         _asyncProcessor.Enqueue(new IndexAddTask(this, key, value));
     }
 }