A structure containing the function pointers to a persistence implementation and the context or state that will be shared across all the persistence functions. More...
#include <MQTTClientPersistence.h>
A structure containing the function pointers to a persistence implementation and the context or state that will be shared across all the persistence functions.
void* context |
A pointer to any data required to initialize the persistent store.
A function pointer to an implementation of Persistence_open().
A function pointer to an implementation of Persistence_close().
A function pointer to an implementation of Persistence_put().
A function pointer to an implementation of Persistence_get().
A function pointer to an implementation of Persistence_remove().
A function pointer to an implementation of Persistence_keys().
A function pointer to an implementation of Persistence_clear().
A function pointer to an implementation of Persistence_containskey().