1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.hdl.linkpm.sdk.user.callback;
|
| /**
| * Created by jlchen on 12/2/21.
| * 当用户AccessToken 错误后发出的通知 登出处理
| */
| public interface IOnReloginListener {
| /**
| * TOKEN失败 需要退出重新登录
| * @param type: 0:正常退出 1:极光推送强制退出
| */
| void onReLogin(int type);
| }
|
|