Interface IQueryResultUpdateListener<KeyType,ValueType>
-
- Type Parameters:
KeyType
-ValueType
-
public interface IQueryResultUpdateListener<KeyType,ValueType>
Listener interface for receiving notification fromQueryResultMultimap
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
notifyPut(KeyType key, ValueType value)
This method is called by the query result multimap when a new key-value pair is put into the multimapvoid
notifyRemove(KeyType key, ValueType value)
This method is called by the query result multimap when key-value pair is removed from the multimap
-
-
-
Method Detail
-
notifyPut
void notifyPut(KeyType key, ValueType value)
This method is called by the query result multimap when a new key-value pair is put into the multimapOnly invoked if the contents of the multimap changed!
- Parameters:
key
- the key of the newly inserted pairvalue
- the value of the newly inserted pair
-
-