Uses of Interface
io.pmem.pmemkv.KeyValueCallback

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

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