Class EntryAdapter<K,​V>

    • Constructor Detail

      • EntryAdapter

        public EntryAdapter()
    • Method Detail

      • mapCleared

        public void mapCleared​(MapEvent event)
        Description copied from interface: MapClearedListener
        Invoked when all entries are removed by IMap.clear(). When a listener is registered as local-only then it will be invoked if and only if the clear() method is called on the same instance where the listener was registered to.
        Specified by:
        mapCleared in interface MapClearedListener
        Parameters:
        event - the map event invoked when all entries are removed by IMap.clear()
      • onEntryEvent

        public void onEntryEvent​(EntryEvent<K,​V> event)
        This method is called when an one of the methods of the EntryListener is not overridden. It can be practical if you want to bundle some/all of the methods to a single method.
        Parameters:
        event - the EntryEvent.
      • onMapEvent

        public void onMapEvent​(MapEvent event)
        This method is called when an one of the methods of the EntryListener is not overridden. It can be practical if you want to bundle some/all of the methods to a single method.
        Parameters:
        event - the MapEvent.