NIMSDK-AOS  9.19.0
RecentSessionList.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.msg.model;
2 
3 import java.io.Serializable;
4 import java.util.List;
5 
6 public interface RecentSessionList extends Serializable {
7  /**
8  * 是否有更早的消息
9  *
10  * @return true: 还有消息; false: 已经没有更多消息
11  */
12  boolean hasMore();
13 
14  /**
15  * 拉到的一页会话列表
16  *
17  * @return 本页的会话列表
18  */
19  List<RecentSession> getSessionList();
20 }
boolean hasMore()
是否有更早的消息
List< RecentSession > getSessionList()
拉到的一页会话列表