The key/value store interface type. This object holds the kvget, kvlist and kvset methods of an implementation. More...
#include <kvstore.h>
Data Fields | |
kvset | set |
The method that will be called to set data. More... | |
kvget | get |
The method that will be called to retrieve data. More... | |
kvlist | list |
The method that will be called to list data keys. More... | |
void * | ctx |
A user defined context that will be passed to all given methods. More... | |
The key/value store interface type. This object holds the kvget, kvlist and kvset methods of an implementation.
void* ctx |
A user defined context that will be passed to all given methods.
kvget get |
The method that will be called to retrieve data.
kvlist list |
The method that will be called to list data keys.
kvset set |
The method that will be called to set data.