| 82 | } |
| 83 | |
| 84 | MMKVRecoverStrategic onMMKVFileLengthError(const std::string &mmapID) override { |
| 85 | if (g_errorHandler) { |
| 86 | return g_errorHandler(mmapID, MMKVErrorType::MMKVFileLength); |
| 87 | } |
| 88 | return OnErrorDiscard; |
| 89 | } |
| 90 | |
| 91 | void onContentChangedByOuterProcess(const std::string &mmapID) override { |
| 92 | if (g_contentHandler) { |
nothing calls this directly
no outgoing calls
no test coverage detected