1 Star 2 Fork 3

夏季的风/go-webSocket服务端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ReceiveTask.go 731 Bytes
一键复制 编辑 原始数据 按行查看 历史
lingbinbin 提交于 2021-09-08 10:05 . *对外部隐藏内部使用接口
package netService
import "gitee.com/ling-bin/netwebSocket/netInterface"
//客户端请求内容
type ReceiveTask struct {
conn netInterface.IConnection //已经和客户端建立好的 链接
data []byte //客户端请求的数据
msgType int //消息类型
OnReceive func(int,[]byte)
}
//获取连接id
func (r *ReceiveTask) GetTaskId() uint64 {
return r.conn.GetConnId()
}
//处理数据
func (r *ReceiveTask) RunTask() int {
r.OnReceive(r.msgType, r.data)
return 0
}
//超时回调
func (r *ReceiveTask) CallOutTime() {
r.conn.CallLogHandle(netInterface.Error, "[webSocket]连接处理超时", "远程地址=>", r.conn.GetRemoteAddr(), " 任务ID=> ", r.GetTaskId())
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ling-bin/netwebSocket.git
git@gitee.com:ling-bin/netwebSocket.git
ling-bin
netwebSocket
go-webSocket服务端
v1.3.1

搜索帮助