Package com.hazelcast.map.listener
Interface EntryLoadedListener<K,V>
-
- Type Parameters:
K
- the type of key.V
- the type of value.
- All Superinterfaces:
java.util.EventListener
,MapListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface EntryLoadedListener<K,V> extends MapListener
Invoked upon load of an entry. EntryLoadedListener is notified upon load of an entry by aMapLoader
. By using this listener andEntryAddedListener
, one can distinguish an application put from map-loader load.- Since:
- 3.11
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
entryLoaded(EntryEvent<K,V> event)
Invoked upon load of an entry.
-
-
-
Method Detail
-
entryLoaded
void entryLoaded(EntryEvent<K,V> event)
Invoked upon load of an entry.- Parameters:
event
- the event invoked when an entry is loaded
-
-