| 程序包 | 说明 |
|---|---|
| cn.leancloud | |
| cn.leancloud.callback |
| 限定符和类型 | 方法和说明 |
|---|---|
static <T extends LCObject> |
LCObject.createWithoutData(Class<T> clazz,
String objectId)
Create a new instance with particular class and objectId.
|
static <T extends LCUser> |
LCUser.createWithSessionToken(Class<T> clazz,
String objectId,
String sessionToken) |
static LCUser |
LCUser.createWithSessionToken(String objectId,
String sessionToken) |
static void |
LCObject.deleteAll(Collection<? extends LCObject> objects)
Delete all objects in blocking mode.
|
static void |
LCObject.deleteAll(LCUser asAuthenticatedUser,
Collection<? extends LCObject> objects)
Delete all objects in blocking mode.
|
static void |
LCObject.saveAll(Collection<? extends LCObject> objects)
Save All objects in blocking mode.
|
static void |
LCObject.saveAll(LCUser asAuthenticatedUser,
Collection<? extends LCObject> objects)
Save All objects in blocking mode.
|
void |
LCFile.saveEventually()
Save eventually(not supported).
|
void |
LCObject.saveEventually()
Save eventually.
|
void |
LCFile.saveEventually(LCUser asAuthenticatedUser)
Save eventually(not supported).
|
void |
LCObject.saveEventually(LCUser asAuthenticatedUser)
Save eventually.
|
| 限定符和类型 | 方法和说明 |
|---|---|
abstract void |
GetDataCallback.done(byte[] data,
LCException e) |
abstract void |
GetDataStreamCallback.done(InputStream data,
LCException e) |
abstract void |
CountCallback.done(int count,
LCException e)
Override this function with the code you want to run after the count is complete.
|
abstract void |
CloudQueryCallback.done(LCCloudQueryResult result,
LCException LCException) |
abstract void |
SignUpCallback.done(LCException e)
Override this function with the code you want to run after the signUp is complete.
|
abstract void |
RequestPasswordResetCallback.done(LCException e)
Override this function with the code you want to run after the request is complete.
|
abstract void |
MobilePhoneVerifyCallback.done(LCException e) |
abstract void |
RequestMobileCodeCallback.done(LCException e) |
abstract void |
SaveCallback.done(LCException e)
Override this function with the code you want to run after the save is complete.
|
abstract void |
DeleteCallback.done(LCException e)
Override this function with the code you want to run after the delete is complete.
|
abstract void |
UpdatePasswordCallback.done(LCException e)
请用您需要在修改密码完成以后的逻辑重载本方法
|
abstract void |
RequestEmailVerifyCallback.done(LCException e)
Override this function with the code you want to run after the request is complete.
|
abstract void |
SendCallback.done(LCException e) |
abstract void |
StatusCallback.done(LCStatus statusObject,
LCException LCException)
Override this function with the code you want to run after the fetch is complete.
|
abstract void |
StatusListCallback.done(List<LCStatus> statusObjects,
LCException LCException)
Override this function with the code you want to run after the fetch is complete.
|
abstract void |
FindCallback.done(List<T> objects,
LCException LCException)
Override this function with the code you want to run after the fetch is complete.
|
abstract void |
FollowersAndFolloweesCallback.done(Map<String,List<T>> avObjects,
LCException LCException)
Override this function with the code you want to run after the fetch is complete.
|
abstract void |
LogInCallback.done(T user,
LCException e)
Override this function with the code you want to run after the save is complete.
|
abstract void |
GetCallback.done(T object,
LCException e) |
abstract void |
FunctionCallback.done(T object,
LCException e)
Override this function with the code you want to run after the cloud function is complete.
|
abstract void |
FollowCallback.done(T object,
LCException e)
Override this function with the code you want to run after the fetch is complete.
|
abstract void |
RefreshCallback.done(T object,
LCException e)
Override this function with the code you want to run after the save is complete.
|
abstract void |
GetFileCallback.done(T object,
LCException e)
Override this function with the code you want to run after the fetch is complete.
|
void |
LCCallback.internalDone(LCException LCException) |
void |
LCCallback.internalDone(T t,
LCException LCException) |
protected void |
GetDataCallback.internalDone0(byte[] returnValue,
LCException e) |
protected void |
GetDataStreamCallback.internalDone0(InputStream returnValue,
LCException e) |
protected void |
CountCallback.internalDone0(Integer returnValue,
LCException e)
internal done function.
|
protected void |
ProgressCallback.internalDone0(Integer returnValue,
LCException e)
Override this function with your desired callback.
|
protected void |
CloudQueryCallback.internalDone0(LCCloudQueryResult returnValue,
LCException e) |
protected void |
RequestPasswordResetCallback.internalDone0(LCNull t,
LCException LCException) |
protected void |
MobilePhoneVerifyCallback.internalDone0(LCNull t,
LCException LCException)
MobilePhoneVerifyCallback 用来验证用户的手机号码
|
protected void |
RequestMobileCodeCallback.internalDone0(LCNull t,
LCException LCException) |
protected void |
DeleteCallback.internalDone0(LCNull returnValue,
LCException e) |
protected void |
UpdatePasswordCallback.internalDone0(LCNull t,
LCException LCException) |
protected void |
RequestEmailVerifyCallback.internalDone0(LCNull t,
LCException LCException) |
protected void |
SendCallback.internalDone0(LCNull t,
LCException LCException) |
protected void |
StatusCallback.internalDone0(LCStatus returnValue,
LCException e) |
protected void |
SignUpCallback.internalDone0(LCUser t,
LCException LCException) |
protected void |
StatusListCallback.internalDone0(List<LCStatus> returnValue,
LCException e) |
protected void |
FindCallback.internalDone0(List<T> returnValue,
LCException e) |
protected void |
FollowersAndFolloweesCallback.internalDone0(Map<String,List<T>> returnValue,
LCException e) |
protected void |
LogInCallback.internalDone0(T returnValue,
LCException e) |
protected void |
GetCallback.internalDone0(T returnValue,
LCException e) |
protected void |
FunctionCallback.internalDone0(T returnValue,
LCException e) |
protected void |
SaveCallback.internalDone0(T returnValue,
LCException e) |
protected void |
FollowCallback.internalDone0(T returnValue,
LCException e) |
protected abstract void |
LCCallback.internalDone0(T t,
LCException LCException) |
protected void |
RefreshCallback.internalDone0(T returnValue,
LCException e) |
protected void |
GetFileCallback.internalDone0(T returnValue,
LCException e) |
void |
GenericObjectCallback.onSuccess(String content,
LCException e) |
Copyright © 2020, 美味书签(北京)信息技术有限公司 All rights reserved.