[fix] // TODO 流量并发异常

This commit is contained in:
wujiawei
2024-10-28 23:17:08 +08:00
parent 381f8a6960
commit 1e2f58b5a3
2 changed files with 4 additions and 3 deletions

View File

@ -54,6 +54,7 @@ public class ChannelFlowAdapter {
* @param channelFlow 通道数据
*/
public void asyncHandler(Channel channel, ChannelFlow channelFlow) {
// TODO 流量并发异常
CHANNEL_FLOW_ADAPTER_EXECUTOR.submit(() -> handler(channel, channelFlow));
}