public interface ISyncClientListener
SyncClient
or with the updated
RowStructure
s.SyncClient
Modifier and Type | Method and Description |
---|---|
void |
onCredentialsChanged(SyncClient syncClient)
Notifies that the credentials have been changed.
|
void |
onDataUpdated(SyncClient syncClient,
com.softwareag.mobile.data.sync.RowStructure rowStructure)
Notifies that a new or updated
RowStructure has been processed. |
void |
onDownloadFinished(SyncClient syncClient,
boolean failed)
Notifies that the download operation is finished.
|
void |
onDownloadStarted(SyncClient syncClient)
Notifies that a new download is started.
|
void |
onMissingCredentials(SyncClient syncClient)
Notifies that credentials are missing.
|
void |
onStart(SyncClient syncClient)
Notifies that the
SyncClient.start() method has been called. |
void |
onStop(SyncClient syncClient)
Notifies that the
SyncClient.stop() method has been called. |
void |
onSyncFinished(SyncClient syncClient,
boolean failed)
Notifies that the sync operation is finished.
|
void |
onSyncStarted(SyncClient syncClient)
Notifies that a new sync is started.
|
void onStart(SyncClient syncClient)
SyncClient.start()
method has been called.syncClient
- void onStop(SyncClient syncClient)
SyncClient.stop()
method has been called.syncClient
- void onDownloadStarted(SyncClient syncClient)
DownloadOperation
starts.syncClient
- SyncClient.download()
void onDownloadFinished(SyncClient syncClient, boolean failed)
failed
flag indicates if a failure occurred or not.syncClient
- failed
- void onSyncStarted(SyncClient syncClient)
SyncOperation
starts.syncClient
- SyncClient.sync()
void onSyncFinished(SyncClient syncClient, boolean failed)
failed
flag indicates if a failure occurred or not.syncClient
- failed
- void onCredentialsChanged(SyncClient syncClient)
syncClient
- void onMissingCredentials(SyncClient syncClient)
syncClient
- void onDataUpdated(SyncClient syncClient, com.softwareag.mobile.data.sync.RowStructure rowStructure)
RowStructure
has been processed.syncClient
- rowStructure
-