7#ifndef _NIM_SDK_CPP_TALK_H_
8#define _NIM_SDK_CPP_TALK_H_
73 static void RegSendMsgCb(
const SendMsgAckCallback& cb,
const std::string& json_extension =
"");
104 static void SendMsg(
const std::string& json_msg,
const std::string& json_extension =
"",
FileUpPrgCallback* pcb =
nullptr);
160 static bool StopSendMsg(
const std::string& client_msg_id,
const NIMMessageType& type,
const std::string& json_extension =
"");
179 static void RegReceiveCb(
const ReceiveMsgCallback& cb,
const std::string& json_extension =
"");
196 static void RegReceiveMessagesCb(
const ReceiveMsgsCallback& cb,
const std::string& json_extension =
"");
220 static std::string CreateTextMessage(
const std::string& receiver_id,
222 const std::string& client_msg_id,
223 const std::string& content,
226 int32_t sub_type = 0);
256 static std::string CreateImageMessage(
const std::string& receiver_id,
258 const std::string& client_msg_id,
260 const std::string& file_path,
263 int32_t sub_type = 0);
293 static std::string CreateFileMessage(
const std::string& receiver_id,
295 const std::string& client_msg_id,
297 const std::string& file_path,
300 int32_t sub_type = 0);
330 static std::string CreateAudioMessage(
const std::string& receiver_id,
332 const std::string& client_msg_id,
334 const std::string& file_path,
337 int32_t sub_type = 0);
367 static std::string CreateVideoMessage(
const std::string& receiver_id,
369 const std::string& client_msg_id,
371 const std::string& file_path,
374 int32_t sub_type = 0);
402 static std::string CreateLocationMessage(
const std::string& receiver_id,
404 const std::string& client_msg_id,
408 int32_t sub_type = 0);
432 static std::string CreateTipMessage(
const std::string& receiver_id,
434 const std::string& client_msg_id,
435 const std::string& tip,
438 int32_t sub_type = 0);
461 static std::string CreateBotRobotMessage(
const std::string& receiver_id,
463 const std::string& client_msg_id,
464 const std::string& content,
468 int32_t sub_type = 0);
495 static std::string CreateG2NetCallMessage(
const std::string& receiver_id,
497 const std::string& client_msg_id,
498 const std::string& msg_attach,
501 int32_t sub_type = 0);
524 static std::string CreateRetweetMessage(
const std::string& src_msg_json,
525 const std::string& client_msg_id,
527 const std::string& retweet_to_session_id,
529 int64_t timetag = 0);
537 static bool ParseIMMessage(
const std::string& json_msg,
IMMessage& msg);
553 static bool ParseFileMessageAttach(
const IMMessage& msg,
IMFile& file);
593 static void UnregTalkCb();
608 static void RegTeamNotificationFilter(
const TeamNotificationFilter& filter,
const std::string& json_extension =
"");
622 static void RegMessageFilter(
const MessageFilter& filter,
const std::string& json_extension =
"");
637 static void RegRecallMsgsCallback(
const RecallMsgsCallback& cb,
const std::string& json_extension =
"");
679 static void RecallMsg(
const IMMessage& msg,
const std::string& notify,
const RecallMsgsCallback& cb,
const std::string& json_extension =
"");
725 static void RecallMsg2(
const IMMessage& msg,
726 const std::string& notify,
728 const std::string& apnstext =
"",
729 const std::string& pushpayloadconst =
"",
730 const std::string& json_extension =
"");
797 static std::string GetAttachmentPathFromMsg(
const IMMessage& msg);
870 static void ReplyMessageWithOption(
const IMMessage& former_msg,
聊天功能,主要包括消息收发、消息撤回、消息回复(Thread 场景)等功能
Definition: nim_cpp_talk.h:25
std::function< void(const std::list< BroadcastMessage > &)> ReceiveBroadcastMsgsCallback
批量接收广播消息通知回调
Definition: nim_cpp_talk.h:42
std::function< void(const IMMessage &)> ReceiveMsgCallback
接收消息通知回调
Definition: nim_cpp_talk.h:30
std::function< bool(const IMMessage &)> MessageFilter
消息过滤器
Definition: nim_cpp_talk.h:44
std::function< void(int64_t, int64_t)> FileUpPrgCallback
发送多媒体消息文件上传过程回调
Definition: nim_cpp_talk.h:34
std::function< void(const SendMessageArc &)> SendMsgAckCallback
发送消息回执通知回调
Definition: nim_cpp_talk.h:28
std::function< void(const std::list< IMMessage > &)> ReceiveMsgsCallback
批量接收消息通知回调
Definition: nim_cpp_talk.h:32
std::function< void(const BroadcastMessage &)> ReceiveBroadcastMsgCallback
接收广播消息通知回调
Definition: nim_cpp_talk.h:40
std::function< void(const NIMResCode, const std::list< RecallMsgNotify > &)> RecallMsgsCallback
消息撤回通知回调
Definition: nim_cpp_talk.h:38
std::function< bool(const IMMessage &)> TeamNotificationFilter
群通知过滤器
Definition: nim_cpp_talk.h:36
NIMMessageType
Definition: nim_msglog_def.h:301
#define NIM_SDK_CPPWRAPPER_DLL_API
Definition: nim_sdk_cpp_wrapper.h:38
NIMSessionType
Definition: nim_session_def.h:16
NIMResCode
Definition: public_defines.h:21
unsigned char bool
Definition: stdbool.h:25
Definition: nim_talk_helper.h:745
语音消息附件
Definition: nim_talk_helper.h:647
波特机器人消息附件
Definition: nim_talk_helper.h:703
文件消息附件
Definition: nim_talk_helper.h:531
图片消息附件
Definition: nim_talk_helper.h:588
位置消息附件
Definition: nim_talk_helper.h:615
Definition: nim_talk_helper.h:339
Definition: nim_talk_helper.h:323
小视频消息附件
Definition: nim_talk_helper.h:670
消息属性设置
Definition: nim_talk_helper.h:25
发送消息回执
Definition: nim_msg_helper.h:24