NIMSDK-AOS
10.9.50
首页
相关页面
包
类
文件
文件列表
basesdk
src
com
netease
nimlib
sdk
friend
model
MuteListChangedNotify.java
浏览该文件的文档.
1
package
com.netease.nimlib.sdk.friend.model;
2
3
/**
4
* 静音列表变更通知
5
*/
6
public
class
MuteListChangedNotify
{
7
private
String account;
8
private
boolean
mute;
9
10
public
MuteListChangedNotify
(String account,
boolean
mute) {
11
this.account = account;
12
this.mute = mute;
13
}
14
15
/**
16
* 静音发生变化的用户
17
*
18
* @return 用户账号
19
*/
20
public
String
getAccount
() {
21
return
account;
22
}
23
24
/**
25
* 该用户是否被静音
26
*
27
* @return true 表示该用户被静音;false 表示有消息提醒(未被静音)
28
*/
29
public
boolean
isMute
() {
30
return
mute;
31
}
32
}
com.netease.nimlib.sdk.friend.model.MuteListChangedNotify
静音列表变更通知
Definition:
MuteListChangedNotify.java:6
com.netease.nimlib.sdk.friend.model.MuteListChangedNotify.isMute
boolean isMute()
该用户是否被静音
Definition:
MuteListChangedNotify.java:29
com.netease.nimlib.sdk.friend.model.MuteListChangedNotify.MuteListChangedNotify
MuteListChangedNotify(String account, boolean mute)
Definition:
MuteListChangedNotify.java:10
com.netease.nimlib.sdk.friend.model.MuteListChangedNotify.getAccount
String getAccount()
静音发生变化的用户
Definition:
MuteListChangedNotify.java:20
生成于 2025年 九月 12日 星期五 10:22:49 , 为 NIMSDK-AOS使用
1.8.11