public abstract class MobilePhoneVerifyCallback extends LCCallback<LCNull>
| Constructor and Description |
|---|
MobilePhoneVerifyCallback() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
done(LCException e) |
protected void |
internalDone0(LCNull t,
LCException LCException)
MobilePhoneVerifyCallback 用来验证用户的手机号码
|
internalDone, internalDone, setMainThreadCheckerprotected final void internalDone0(LCNull t, LCException LCException)
MobilePhoneVerifyCallback 用来验证用户的手机号码
internalDone0 in class LCCallback<LCNull>t - null object.LCException - exception.
调用的范例如下
LCUser.verifyMobilePhoneInBackgroud("123456",
new MobilePhoneVerifyCallback() {
public void done(LCException e) {
if (e == null) {
requestedSuccessfully();
} else {
requestDidNotSucceed();
}
}
});
public abstract void done(LCException e)
Copyright © 2020, 美味书签(北京)信息技术有限公司 All rights reserved.