Code for native ops
Depends on D9909
Paths
| Differential D9910 Authored by kamil on Nov 16 2023, 6:32 AM.
Details
Summary Code for native ops Depends on D9909 Test Plan Code for testing: await commCoreModule.processUserStoreOperations([ { type: 'replace_user', payload: { id: '1', userInfo: 'fdfd', }, }, { type: 'replace_user', payload: { id: '2', userInfo: 'fdfd', }, }, ]); await commCoreModule.processUserStoreOperations([ { type: 'replace_user', payload: { id: '2', userInfo: 'fdfd', }, }, ]); await commCoreModule.processUserStoreOperations([ { type: 'remove_users', payload: { ids: ['1'], }, }, ]); await commCoreModule.processUserStoreOperations([ { type: 'remove_all_users', }, ]);
Diff Detail
Event Timelinekamil held this revision as a draft. Herald added a subscriber: ashoat. · View Herald TranscriptNov 16 2023, 6:32 AM2023-11-16 06:32:09 (UTC-8) kamil added a child revision: D9911: [SQLite] implement C++ code to get users.Nov 16 2023, 6:35 AM2023-11-16 06:35:26 (UTC-8) Harbormaster failed remote builds in B24201: Diff 33326!Nov 16 2023, 7:19 AM2023-11-16 07:19:13 (UTC-8) Harbormaster failed remote builds in B24207: Diff 33340!Nov 16 2023, 7:45 AM2023-11-16 07:45:17 (UTC-8) Harbormaster completed remote builds in B24209: Diff 33342.Nov 16 2023, 8:48 AM2023-11-16 08:48:35 (UTC-8) This revision is now accepted and ready to land.Nov 17 2023, 7:46 AM2023-11-17 07:46:20 (UTC-8) Closed by commit rCOMMa5c95cab2250: [SQLite] implement C++ user store ops (authored by kamil). · Explain WhyNov 20 2023, 5:48 AM2023-11-20 05:48:25 (UTC-8) This revision was automatically updated to reflect the committed changes.
Revision Contents
Diff 33326 native/cpp/CommonCpp/NativeModules/CMakeLists.txt
native/cpp/CommonCpp/NativeModules/CommCoreModule.h
native/cpp/CommonCpp/NativeModules/CommCoreModule.cpp
native/cpp/CommonCpp/NativeModules/PersistentStorageUtilities/DataStores/UserStore.h
|