Synchronization
Last updated
SyncService syncs the client app and remote secondary server’s changes:
If the client app’s changes are ahead, it pushes the changes to the remote secondary.
If the remote secondary is ahead, it pulls the changes to the client app.
To trigger a sync, call the .sync function:
AtClientManager atClientManager = AtClientManager.getInstance();
SyncService syncService = atClientManager.syncService;
syncService.sync();Last updated