
com.avos.avoscloud.ProgressCallback Maven / Gradle / Ivy
package com.avos.avoscloud;
/**
*
* A ProgressCallback is used to get progress of an operation.
*
*
* The easiest way to use a ProgressCallback is through an anonymous inner class.
*
*/
public abstract class ProgressCallback extends AVCallback {
public abstract void done(Integer percentDone);
/**
* Override this function with your desired callback.
*/
protected final void internalDone0(Integer returnValue, AVException e) {
done(returnValue);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy