NIMSDK-AOS
9.19.0
basesdk
src
com
netease
nimlib
sdk
msg
model
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
}
com.netease.nimlib.sdk.msg.model.RecentSessionList.hasMore
boolean hasMore()
是否有更早的消息
com.netease.nimlib.sdk.msg.model.RecentSessionList.getSessionList
List< RecentSession > getSessionList()
拉到的一页会话列表
com.netease.nimlib.sdk.msg.model.RecentSessionList
Definition:
RecentSessionList.java:6
生成于 2024年 十月 16日 星期三 10:25:05 , 为 NIMSDK-AOS使用
1.8.13