潘志宝
2024-11-21 d338b50afd6504a9676f0a26b3ecbcc844483e7c
提交 | 用户 | 时间
e7c126 1 package com.iailab.framework.websocket.core.sender;
H 2
3 import com.iailab.framework.common.util.json.JsonUtils;
4
5 /**
6  * WebSocket 消息的发送器接口
7  *
8  * @author iailab
9  */
10 public interface WebSocketMessageSender {
11
12     /**
13      * 发送消息给指定用户
14      *
15      * @param userType 用户类型
16      * @param userId 用户编号
17      * @param messageType 消息类型
18      * @param messageContent 消息内容,JSON 格式
19      */
20     void send(Integer userType, Long userId, String messageType, String messageContent);
21
22     /**
23      * 发送消息给指定用户类型
24      *
25      * @param userType 用户类型
26      * @param messageType 消息类型
27      * @param messageContent 消息内容,JSON 格式
28      */
29     void send(Integer userType, String messageType, String messageContent);
30
31     /**
32      * 发送消息给指定 Session
33      *
34      * @param sessionId Session 编号
35      * @param messageType 消息类型
36      * @param messageContent 消息内容,JSON 格式
37      */
38     void send(String sessionId, String messageType, String messageContent);
39
40     default void sendObject(Integer userType, Long userId, String messageType, Object messageContent) {
41         send(userType, userId, messageType, JsonUtils.toJsonString(messageContent));
42     }
43
44     default void sendObject(Integer userType, String messageType, Object messageContent) {
45         send(userType, messageType, JsonUtils.toJsonString(messageContent));
46     }
47
48     default void sendObject(String sessionId, String messageType, Object messageContent) {
49         send(sessionId, messageType, JsonUtils.toJsonString(messageContent));
50     }
51
52 }