Class MultiplexingMapListener<K,​V>

    • Constructor Detail

      • MultiplexingMapListener

        public MultiplexingMapListener()
    • Method Detail

      • onMapEvent

        protected abstract void onMapEvent​(MapEvent<K,​V> evt)
        Invoked when a map entry has been inserted, updated or deleted. To determine what action has occurred, use MapEvent.getId().
        Parameters:
        evt - the MapEvent carrying the insert, update or delete information
      • entryInserted

        public void entryInserted​(MapEvent<K,​V> evt)
        Invoked when a map entry has been inserted.
        Specified by:
        entryInserted in interface MapListener<K,​V>
        Parameters:
        evt - the MapEvent carrying the insert information
      • entryUpdated

        public void entryUpdated​(MapEvent<K,​V> evt)
        Invoked when a map entry has been updated.
        Specified by:
        entryUpdated in interface MapListener<K,​V>
        Parameters:
        evt - the MapEvent carrying the update information
      • entryDeleted

        public void entryDeleted​(MapEvent<K,​V> evt)
        Invoked when a map entry has been removed.
        Specified by:
        entryDeleted in interface MapListener<K,​V>
        Parameters:
        evt - the MapEvent carrying the delete information