FileDocCategorySizeDatePackage
IFullBackupRestoreObserver.javaAPI DocAndroid 5.1 API8327Sat Mar 14 05:47:58 GMT 2015android.app.backup

IFullBackupRestoreObserver

public interface IFullBackupRestoreObserver implements android.os.IInterface
Observer of a full backup or restore process. The observer is told "interesting" information about an ongoing full backup or restore action. {@hide}

Fields Summary
Constructors Summary
Methods Summary
public voidonBackupPackage(java.lang.String name)
Notification: the system has begun backing up the given package.

param
name The name of the application being saved. This will typically be a user-meaningful name such as "Browser" rather than a package name such as "com.android.browser", though this is not guaranteed.

public voidonEndBackup()
Notification: the full backup operation has ended.

public voidonEndRestore()
Notification: the restore-from-full-backup operation has ended.

public voidonRestorePackage(java.lang.String name)
Notification: the system has begun restore of the given package.

param
name The name of the application being saved. This will typically be a user-meaningful name such as "Browser" rather than a package name such as "com.android.browser", though this is not guaranteed.

public voidonStartBackup()
Notification: a full backup operation has begun.

public voidonStartRestore()
Notification: a restore-from-full-backup operation has begun.

public voidonTimeout()
The user's window of opportunity for confirming the operation has timed out.