STWDisconnect Call Back
Description :
This callback is used in STWAccountManager when doing the local user disconnect
Example of use :
- Implementation :
LogoutCallBack mLogoutCallBack = new LogoutCallBack() { public void onStart() { } public void onFinish() { } public void onError(STWAccountError error) { } }Content copied to clipboard - Register :
STWAccountManager.getInstance().logout(context,informAdmin, mLogoutCallBack);Content copied to clipboard