1 Star 2 Fork 3

夏季的风/go-webSocket服务端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
IConnManager.go 611 Bytes
一键复制 编辑 原始数据 按行查看 历史
lingbinbin 提交于 2021-09-17 10:22 . *连接管理器添加接口
package netInterface
/*
连接管理接口
*/
type IConnManager interface {
Add(conn IConnection) //添加链接
Remove(conn IConnection) //移除连接
RemoveById(connId uint64) //移除连接
Get(connId uint64) (IConnection, bool) //利用ConnID获取链接
Count() int //连接数
Range(hFunc func(connId uint64, value IConnection) bool) //遍历
ClearConn() //删除并停止所有链接
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ling-bin/netwebSocket.git
git@gitee.com:ling-bin/netwebSocket.git
ling-bin
netwebSocket
go-webSocket服务端
v1.3.5

搜索帮助