start method

void start()

Once the sync client is configured, you can start it to initiate synchronization.

This method triggers communication in the background and returns immediately. The background thread will try to connect to the server, log-in and start syncing data (depends on SyncRequestUpdatesMode). If the device, network or server is currently offline, connection attempts will be retried later automatically. If you haven't set the credentials in the options during construction, call setCredentials() before start().

Implementation

void start() {
  checkObx(C.sync_start(_ptr));
}