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