diff options
author | Christopher Tate <ctate@android.com> | 2009-08-10 16:13:47 -0700 |
---|---|---|
committer | Christopher Tate <ctate@android.com> | 2009-08-11 17:25:12 -0700 |
commit | 0e0b4ae5bc5c652c8339d71ed9667e1e37baaa03 (patch) | |
tree | 42fa43521b6d394421d9f93f8191da457876ec63 /core/java/android/backup | |
parent | a1cbccd7b31f3c33ea46b7fe2a287168eb672056 (diff) | |
download | frameworks_base-0e0b4ae5bc5c652c8339d71ed9667e1e37baaa03.zip frameworks_base-0e0b4ae5bc5c652c8339d71ed9667e1e37baaa03.tar.gz frameworks_base-0e0b4ae5bc5c652c8339d71ed9667e1e37baaa03.tar.bz2 |
Don't let bmgr leave a restore session hanging on error
Specifically, don't wait for the RestoreObserver to be informed that the restore
has completed unless performRestore() ran. We were winding up in a case where
bmgr was hanging forever waiting on a nonexistent restore process instead of
calling endRestoreSession().
Also improve the documentation, explicitly calling out the need to call
endRestoreSession() even if previous operations on the session were
unsuccessful.
Diffstat (limited to 'core/java/android/backup')
-rw-r--r-- | core/java/android/backup/IRestoreSession.aidl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/java/android/backup/IRestoreSession.aidl b/core/java/android/backup/IRestoreSession.aidl index 2a1fbc1..fd40d98 100644 --- a/core/java/android/backup/IRestoreSession.aidl +++ b/core/java/android/backup/IRestoreSession.aidl @@ -40,6 +40,8 @@ interface IRestoreSession { * Restore the given set onto the device, replacing the current data of any app * contained in the restore set with the data previously backed up. * + * @return Zero on success; nonzero on error. The observer will only receive + * progress callbacks if this method returned zero. * @param token The token from {@link getAvailableRestoreSets()} corresponding to * the restore set that should be used. * @param observer If non-null, this binder points to an object that will receive @@ -50,6 +52,9 @@ interface IRestoreSession { /** * End this restore session. After this method is called, the IRestoreSession binder * is no longer valid. + * + * <p><b>Note:</b> The caller <i>must</i> invoke this method to end the restore session, + * even if {@link getAvailableRestoreSets} or {@link performRestore} failed. */ void endRestoreSession(); } |