[*] 日常优化

This commit is contained in:
acgist
2023-09-03 07:40:14 +08:00
parent df41c28d6c
commit 70f11e92a0
3 changed files with 7 additions and 6 deletions

View File

@@ -25,10 +25,10 @@ public abstract class ProtocolClientAdapter extends ProtocolAdapter {
/**
* 处理终端信令
*
* @param clientId 终端标识
* @param clientId 终端ID
* @param clientType 终端类型
* @param client 终端
* @param message 消息
* @param message 信令消息
* @param body 消息主体
*/
public void execute(String clientId, ClientType clientType, Client client, Message message, Map<String, Object> body) {

View File

@@ -33,12 +33,11 @@ public abstract class ProtocolControlAdapter extends ProtocolClientAdapter {
/**
* 处理终端控制信令
*
* @param clientId 终端标识
* @param clientId 终端ID
* @param clientType 终端类型
* @param room 房间
* @param client 终端
* @param targetClient 目标
* @param message 消息
* @param targetClient 目标终端
* @param message 信令消息
* @param body 消息主体
*/
public void execute(String clientId, ClientType clientType, Client client, Client targetClient, Message message, Map<String, Object> body) {