1 Star 0 Fork 26

指尖-网站开发/wsPool

forked from ryanduan/wsPool 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
init.go 501 Bytes
一键复制 编辑 原始数据 按行查看 历史
ryanduan 提交于 2020-11-24 16:39 . 修复bug
package wsPool
var wsSever *Server
/*连接池的结构体*/
type Server struct {
hub *hub
ErrFun func(err interface{}) //用于接收ws连接池内代码运行时错误信息
}
//初始化执行连接池对象
//参数为接收连接池中运行时的一些错误信息的回调方法
func InitWsPool(errfun func(err interface{})) {
wsSever = new(Server)
wsSever.hub = newHub()
wsSever.ErrFun = errfun
go wsSever.hub.run() //开启服务
//go wsSever.hub.ticker() //开启定时服务
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ptzzycode/wsPool.git
[email protected]:ptzzycode/wsPool.git
ptzzycode
wsPool
wsPool
v1.1.8

搜索帮助