MCPcopy Create free account
hub / github.com/Tencent/MMKV / enableAutoExpire

Function enableAutoExpire

Android/MMKV/mmkv/src/main/cpp/flutter-bridge.cpp:635–641  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

633}
634
635MMKV_EXPORT bool enableAutoExpire(void *handle, uint32_t expireDuration) {
636 MMKV *kv = static_cast<MMKV *>(handle);
637 if (kv) {
638 return kv->enableAutoKeyExpire(expireDuration);
639 }
640 return false;
641}
642
643MMKV_EXPORT bool disableAutoExpire(void *handle) {
644 MMKV *kv = static_cast<MMKV *>(handle);

Callers

nothing calls this directly

Calls 1

enableAutoKeyExpireMethod · 0.45

Tested by

no test coverage detected