Code for native ops
Depends on D10775
Paths
| Differential D10776 Authored by kamil on Jan 22 2024, 4:32 AM.
Details
Summary Code for native ops Depends on D10775 Test Plan Call this code: await commCoreModule.processKeyserverStoreOperations([ { type: 'replace_keyserver', payload: { id: '1', keyserverInfo: 'fdfd', }, }, { type: 'replace_keyserver', payload: { id: '2', keyserverInfo: 'fdfd', }, }, ]); await commCoreModule.processKeyserverStoreOperations([ { type: 'replace_keyserver', payload: { id: '2', keyserverInfo: 'fdfd45454545', }, }, ]); await commCoreModule.processKeyserverStoreOperations([ { type: 'remove_keyserver', payload: { id: '1', }, }, ]); await commCoreModule.processKeyserverStoreOperations([ { type: 'remove_all_keyservers', }, ]);
Diff Detail
Event Timelinekamil held this revision as a draft. Herald added subscribers: tomek, ashoat. · View Herald TranscriptJan 22 2024, 4:32 AM2024-01-22 04:32:34 (UTC-8) Harbormaster completed remote builds in B26018: Diff 35952.Jan 22 2024, 4:57 AM2024-01-22 04:57:09 (UTC-8) Comment Actions Might be good for @will to review this stack in preparation for his projects next month This revision is now accepted and ready to land.Jan 24 2024, 9:25 AM2024-01-24 09:25:02 (UTC-8)
Harbormaster completed remote builds in B26226: Diff 36219.Jan 27 2024, 10:41 AM2024-01-27 10:41:17 (UTC-8) Harbormaster completed remote builds in B26242: Diff 36244.Jan 29 2024, 3:35 AM2024-01-29 03:35:15 (UTC-8) Closed by commit rCOMM09c232731144: [SQLite] implement C++ keyserver store ops (authored by kamil). · Explain WhyJan 29 2024, 3:49 AM2024-01-29 03:49:42 (UTC-8) This revision was automatically updated to reflect the committed changes.
Revision Contents
Diff 36255 native/cpp/CommonCpp/NativeModules/CMakeLists.txt
native/cpp/CommonCpp/NativeModules/CommCoreModule.h
native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp
native/cpp/CommonCpp/NativeModules/KeyserverStoreOperations.h
native/cpp/CommonCpp/NativeModules/PersistentStorageUtilities/DataStores/KeyserverStore.h
|