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