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