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