Skip to content
Snippets Groups Projects

Messenger - backup

Merged Dariusz Rybicki requested to merge feature/messenger-backup into development
5 files
+ 82
17
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 8
2
@@ -117,11 +117,15 @@ if messenger.isBackupRunning() == false {
try messenger.resumeBackup()
} catch {
// try to start a new backup:
try messenger.startBackup(password: "backup-passphrase")
let params: BackupParams = ...
try messenger.startBackup(
password: "backup-passphrase",
params: params
)
}
}
// add backup params to the backup:
// update params in the backup:
let params: BackupParams = ...
try messenger.backupParams(params)
@@ -132,6 +136,8 @@ try messenger.stopBackup()
cancellable.cancel()
```
When starting a new backup you must provide `BackupParams` to prevent creating backups that does not contain it.
The registered backup callback can be reused later when a new backup is started. There is no need to cancel it and register a new callback in such a case.
Restore from backup:
Loading