Package org.cometd.oort
Interface OortMap.EntryListener<K,V>
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default void
onPut(OortObject.Info<java.util.concurrent.ConcurrentMap<K,V>> info, OortMap.Entry<K,V> entry)
Callback method invoked after an entry is put into the entity map.default void
onRemoved(OortObject.Info<java.util.concurrent.ConcurrentMap<K,V>> info, OortMap.Entry<K,V> entry)
Callback method invoked after an entry is removed from the entity map.
-
-
-
Method Detail
-
onPut
default void onPut(OortObject.Info<java.util.concurrent.ConcurrentMap<K,V>> info, OortMap.Entry<K,V> entry)
Callback method invoked after an entry is put into the entity map.- Parameters:
info
- theOortObject.Info
that was changed by the putentry
- the entry values
-
onRemoved
default void onRemoved(OortObject.Info<java.util.concurrent.ConcurrentMap<K,V>> info, OortMap.Entry<K,V> entry)
Callback method invoked after an entry is removed from the entity map.- Parameters:
info
- theOortObject.Info
that was changed by the removeentry
- the entry values
-
-