Uses of Interface
io.pmem.pmemkv.KeyValueCallback
Packages that use KeyValueCallback
-
Uses of KeyValueCallback in io.pmem.pmemkv
Methods in io.pmem.pmemkv with parameters of type KeyValueCallbackModifier and TypeMethodDescriptionvoidDatabase.getAbove(K key, KeyValueCallback<K, V> callback) Executes callback function for every key/value pair stored in the pmemkv datastore, whose keys are greater than the given key.voidDatabase.getAll(KeyValueCallback<K, V> callback) Executes callback function for every key/value pair stored in the pmemkv datastore.voidDatabase.getBelow(K key, KeyValueCallback<K, V> callback) Executes callback function for every key/value pair stored in the pmemkv datastore, whose keys are less than the given key.voidDatabase.getBetween(K key1, K key2, KeyValueCallback<K, V> callback) Executes callback function for every key/value pair stored in the pmemkv datastore, whose keys are greater than the key1 and less than the key2.