Uses of Interface
io.pmem.pmemkv.KeyCallback

Packages that use KeyCallback
Package
Description
 
  • Uses of KeyCallback in io.pmem.pmemkv

    Methods in io.pmem.pmemkv with parameters of type KeyCallback
    Modifier and Type
    Method
    Description
    void
    Database.getKeys(KeyCallback<K> callback)
    Executes callback function for every key stored in the pmemkv datastore.
    void
    Database.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.
    void
    Database.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.
    void
    Database.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.