Exemple #1
0
 public void MapEvicted(MapEvent @event)
 {
     if (EvictAll != null)
     {
         EvictAll(@event);
     }
 }
Exemple #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);
 }
Exemple #5
0
 public void MapCleared(MapEvent @event)
 {
     fClearAll(@event);
 }
Exemple #6
0
 public void MapEvicted(MapEvent @event)
 {
     fEvictAll(@event);
 }