rain
2024-03-23 f939a3bfd11650d492316d4a7f2f1cf839bc9c78
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.dji.sample.component.websocket.service;
 
import com.dji.sample.component.websocket.config.ConcurrentWebSocketSession;
 
import java.util.Collection;
 
/**
 * @author sean
 * @version 1.0
 * @date 2022/4/25
 */
public interface IWebSocketManageService {
 
    void put(String key, ConcurrentWebSocketSession val);
 
    void remove(String key, String sessionId);
 
    Collection<ConcurrentWebSocketSession> getValueWithWorkspace(String workspaceId);
 
    Collection<ConcurrentWebSocketSession> getValueWithWorkspaceAndUserType(String workspaceId, Integer userType);
 
    Long getConnectedCount();
}