Interface SyncSession.ClientResetHandler
-
- All Superinterfaces:
ManuallyRecoverUnsyncedChangesStrategy
,SyncClientResetStrategy
- Enclosing class:
- SyncSession
@Deprecated public static interface SyncSession.ClientResetHandler extends ManuallyRecoverUnsyncedChangesStrategy
Deprecated.replaced byManuallyRecoverUnsyncedChangesStrategy
Callback for the specific error event known as a Client Reset, determined by the error codeErrorCode.CLIENT_RESET
.A synced Realm may need to be reset because the MongoDB Realm Server encountered an error and had to be restored from a backup or because it has been too long since the client connected to the server so the server has rotated the logs.
The Client Reset thus occurs because the server does not have the full information required to bring the Client fully up to date.
The reset process is as follows: the local copy of the Realm is copied into a recovery directory for safekeeping, and then deleted from the original location. The next time the Realm for that URL is opened, the Realm will automatically be re-downloaded from MongoDB Realm, and can be used as normal.
Data written to the Realm after the local copy of the Realm diverged from the backup remote copy will be present in the local recovery copy of the Realm file. The re-downloaded Realm will initially contain only the data present at the time the Realm was backed up on the server.
The client reset process can be initiated in one of two ways:
-
Run
ClientResetRequiredError.executeClientReset()
manually. All Realm instances must be closed before this method is called. - If Client Reset isn't executed manually, it will automatically be carried out the next time all Realm instances have been closed and re-opened. This will most likely be when the app is restarted.
-
-
Method Summary
-
Methods inherited from interface io.realm.mongodb.sync.ManuallyRecoverUnsyncedChangesStrategy
onClientReset
-
-