2 Star 19 Fork 4

不稳定丶大神/lucky

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
msgInfo.go 805 Bytes
一键复制 编辑 原始数据 按行查看 历史
火星上的乞丐 提交于 2021-02-20 18:09 . re-named packages
package lucky
import (
"github.com/helloh2o/lucky/log"
"reflect"
"runtime/debug"
"time"
)
// 回调传参常量
const (
Msg = iota
Conn
Raw
)
// 消息信息
type msgInfo struct {
msgId int
msgType reflect.Type
msgCallback func(args ...interface{})
}
// 执行消息回调
func execute(mInfo msgInfo, msg interface{}, writer interface{}, body []byte, id uint32) {
defer func() {
if r := recover(); r != nil {
log.Error("%v", r)
log.Error("panic at msg %d handler, stack %s", id, string(debug.Stack()))
}
}()
begin := time.Now().UnixNano() / int64(time.Millisecond)
mInfo.msgCallback(msg, writer, body)
costs := time.Now().UnixNano()/int64(time.Millisecond) - begin
log.Debug("===> execute logic %d costs %dms, msgType %v <===", mInfo.msgId, costs, mInfo.msgType)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/helloh2o/lucky.git
[email protected]:helloh2o/lucky.git
helloh2o
lucky
lucky
master

搜索帮助