Example #1
0
 public void MapEvicted(MapEvent @event)
 {
     if (EvictAll != null)
     {
         EvictAll(@event);
     }
 }
Example #2
0
 public void MapCleared(MapEvent @event)
 {
     if (ClearAll != null)
     {
         ClearAll(@event);
     }
 }
 public void MapCleared(MapEvent @event)
 {
     ClearAll?.Invoke(@event);
 }
 public void MapEvicted(MapEvent @event)
 {
     EvictAll?.Invoke(@event);
 }
Example #5
0
 public void MapCleared(MapEvent @event)
 {
     fClearAll(@event);
 }
Example #6
0
 public void MapEvicted(MapEvent @event)
 {
     fEvictAll(@event);
 }