K - key type in mapV - value type in mappublic static interface Bind.MapListener<K,V>
| Modifier and Type | Method and Description |
|---|---|
void |
update(K key,
V oldVal,
V newVal)
Callback method called after `Map` was modified.
|
void update(K key, V oldVal, V newVal)
key - key in mapoldVal - old value in map (if any, null on inserts)newVal - new value in map (if any, null on deletes)