
com.avos.avoscloud.StatusListCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leancloud-common Show documentation
Show all versions of leancloud-common Show documentation
leancloud java sdk common library
The newest version!
package com.avos.avoscloud;
import java.util.List;
/**
* Created with IntelliJ IDEA. User: zhuzeng Date: 1/3/14 Time: 4:25 PM To change this template use
* File | Settings | File Templates.
*/
public abstract class StatusListCallback extends AVCallback> {
/**
* Override this function with the code you want to run after the fetch is complete.
*
* @param statusObjects The objects matching the query, or null if it failed.
* @param parseException The exception raised by the find, or null if it succeeded.
*/
public abstract void done(List statusObjects, AVException parseException);
@Override
protected final void internalDone0(List returnValue, AVException e) {
done(returnValue, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy