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:
.sync
AtClientManager atClientManager = AtClientManager.getInstance(); SyncService syncService = atClientManager.syncService; syncService.sync();
Last updated 1 month ago