实时通讯

This commit is contained in:
高保安
2025-12-01 10:08:41 +08:00
commit e6623be1e5
140 changed files with 6032 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.realtime.packets.strategy;
import com.alibaba.fastjson2.JSONObject;
import com.realtime.packets.basePackets.BasePackets;
public interface PackStrategy {
boolean getCurrent(Byte commandLine);
BasePackets getCurrentPacket(JSONObject jsonObject);
}