public abstract class RequestMobileCodeCallback extends AVCallback<Void>
RequestMobilePhoneVerify 用来验证用户的手机号码
调用的范例如下
AVUser.requestMobilePhoneVerifyInBackgroud("12345678901", new RequestMobileCodeCallback() {
public void done(AVException e) {
if (e == null) {
requestedSuccessfully();
} else {
requestDidNotSucceed();
}
}
});
| Constructor and Description |
|---|
RequestMobileCodeCallback() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
done(AVException e) |
protected void |
internalDone0(Void t,
AVException parseException) |
internalDone, internalDone, mustRunOnUIThreadpublic abstract void done(AVException e)
protected final void internalDone0(Void t, AVException parseException)
internalDone0 in class AVCallback<Void>Copyright © 2017. All rights reserved.