public interface ContinuousQueryListener<K,V>
Modifier and Type | Method and Description |
---|---|
default void |
resultJoining(K key,
V value)
Receives notification that a cache entry has joined the matching set.
|
default void |
resultLeaving(K key)
Receives notification that a cache entry has left the matching set.
|
default void |
resultUpdated(K key,
V value)
Receives notification that a cache entry from the matching set was updated and continues to match the query.
|
default void resultJoining(K key, V value)
key
- the key of the joining entryvalue
- the joining entry or the Object[] projection if a projection was specifieddefault void resultUpdated(K key, V value)
key
- the key of the joining entryvalue
- the joining entry or the Object[] projection if specifieddefault void resultLeaving(K key)
key
- the key of the leaving entryCopyright © 2018 JBoss, a division of Red Hat. All rights reserved.