Uses of Interface
io.pmem.pmemkv.KeyCallback
Packages that use KeyCallback
-
Uses of KeyCallback in io.pmem.pmemkv
Methods in io.pmem.pmemkv with parameters of type KeyCallbackModifier and TypeMethodDescriptionvoidDatabase.getKeys(KeyCallback<K> callback) Executes callback function for every key stored in the pmemkv datastore.voidDatabase.getKeysAbove(K key, KeyCallback<K> callback) Executes callback function for every key stored in the pmemkv datastore, whose keys are greater than the given key.voidDatabase.getKeysBelow(K key, KeyCallback<K> callback) Executes callback function for every key stored in the pmemkv datastore, whose keys are less than the given key.voidDatabase.getKeysBetween(K key1, K key2, KeyCallback<K> callback) Executes callback function for every key stored in the pmemkv datastore, whose keys are greater than the key1 and less than the key2.