类 FindCallback<T extends LCObject>
- java.lang.Object
-
- cn.leancloud.callback.LCCallback<java.util.List<T>>
-
- cn.leancloud.callback.FindCallback<T>
-
public abstract class FindCallback<T extends LCObject> extends LCCallback<java.util.List<T>>
-
-
构造器概要
构造器 构造器 说明 FindCallback()
-
方法概要
所有方法 实例方法 抽象方法 具体方法 修饰符和类型 方法 说明 abstract voiddone(java.util.List<T> objects, LCException LCException)Override this function with the code you want to run after the fetch is complete.protected voidinternalDone0(java.util.List<T> returnValue, LCException e)-
从类继承的方法 cn.leancloud.callback.LCCallback
internalDone, internalDone, setMainThreadChecker
-
-
-
-
方法详细资料
-
done
public abstract void done(java.util.List<T> objects, LCException LCException)
Override this function with the code you want to run after the fetch is complete.- 参数:
objects- The objects matching the query, or null if it failed.LCException- The exception raised by the find, or null if it succeeded.
-
internalDone0
protected final void internalDone0(java.util.List<T> returnValue, LCException e)
- 指定者:
internalDone0在类中LCCallback<java.util.List<T extends LCObject>>
-
-