/**
* Returns the current Session that's being tracked if it's open,
* otherwise returns null.
*
* @return the current Session if it's open, otherwise returns null
*/
public Session getOpenSession() {
Session openSession = getSession();
if (openSession != null && openSession.isOpened()) {
return openSession;
}
return null;
}
SessionTracker.java 文件源码
java
阅读 26
收藏 0
点赞 0
评论 0
项目:AndroidBackendlessChat
作者:
评论列表
文章目录