NIMSDK-AOS
9.19.0
basesdk
src
com
netease
nimlib
sdk
msg
attachment
MsgAttachmentParser.java
浏览该文件的文档.
1
package
com.netease.nimlib.sdk.msg.attachment;
2
3
import
java.io.Serializable;
4
5
/**
6
* 消息附件解析器接口。
7
*/
8
public
interface
MsgAttachmentParser
extends
Serializable {
9
10
/**
11
* 将一个字符串解析为一个云信消息附件。一般而言,该字符串是一个json字符串。
12
* @param attach 附件序列化后的字符串内容
13
* @return 解析结果
14
*/
15
public
MsgAttachment
parse
(String attach);
16
}
com.netease.nimlib.sdk.msg.attachment.MsgAttachment
消息附件基础接口
Definition:
MsgAttachment.java:8
com.netease.nimlib.sdk.msg.attachment.MsgAttachmentParser
消息附件解析器接口。
Definition:
MsgAttachmentParser.java:8
com.netease.nimlib.sdk.msg.attachment.MsgAttachmentParser.parse
MsgAttachment parse(String attach)
将一个字符串解析为一个云信消息附件。一般而言,该字符串是一个json字符串。
生成于 2024年 十月 16日 星期三 10:25:05 , 为 NIMSDK-AOS使用
1.8.13