blob: ed7be1475be070ef0c5074b917699a0208e6c6f8 [file] [log] [blame]
package android.health.connect.aidl;
import android.health.connect.migration.MigrationException;
/**
* A callback for any error encountered by {@link HealthConnectManager#writeMigrationData}.
* @hide
*/
interface IMigrationCallback {
// Called when the batch is successfully saved
oneway void onSuccess();
// Called when an error is hit during the migration process
oneway void onError(in MigrationException exception);
}