feat(socket): 增加连接数统计功能

- 在 Server 结构中添加 connected 字段,用于统计当前连接数
- 在 OnOpen 和 OnClose 事件处理函数中增加连接数的增减逻辑
- 添加 OnTick 方法,定期打印当前连接数
- 更新 ServerEvent 和 ServerOption 文件,集成新功能
This commit is contained in:
2025-07-07 19:58:23 +08:00
parent f0f6689424
commit 33723334f9
5 changed files with 32 additions and 10 deletions

View File

@@ -24,6 +24,7 @@ import (
var Maincontroller = NewController() //注入service
// 分发cmd逻辑实现Controller
type Controller struct {
//connected int64 //统计连接数
Port uint32
RPCClient struct {
Kick func(int32) error