| java.lang.Object | |
| ↳ | android.app.backup.RestoreObserver |
Callback class for receiving progress reports during a restore operation. These methods will all be called on your application's main thread.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
An indication of which package is being restored currently, out of the
total number provided in the
restoreStarting(int) callback.
| |||||||||||
The restore process has completed.
| |||||||||||
The restore operation has begun.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
An indication of which package is being restored currently, out of the
total number provided in the restoreStarting(int) callback. This method
is not guaranteed to be called: if the transport is unable to obtain
data for one or more of the requested packages, no onUpdate() call will
occur for those packages.
| nowBeingRestored | The index, between 1 and the numPackages parameter
to the restoreStarting(int) callback, of the package now being
restored. This may be non-monotonic; it is intended purely as a rough
indication of the backup manager's progress through the overall restore process. |
|---|---|
| currentPackage | The name of the package now being restored. |
The restore process has completed. This method will always be called, even if no individual package restore operations were attempted.
| error | Zero on success; a nonzero error code if the restore operation as a whole failed. |
|---|
The restore operation has begun.
| numPackages | The total number of packages being processed in this restore operation. |
|---|