Uses of Interface
io.pmem.pmemkv.KeyCallback
-
Packages that use KeyCallback Package Description io.pmem.pmemkv -
-
Uses of KeyCallback in io.pmem.pmemkv
Methods in io.pmem.pmemkv with parameters of type KeyCallback Modifier and Type Method Description voidDatabase. 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.
-