2 Star 4 Fork 6

联犀/中台模块

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
websocketConnectLogic.go 961 Bytes
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-10-10 21:56 . feat: 更新mod
package common
import (
"context"
"gitee.com/unitedrhino/core/service/apisvr/internal/svc"
"gitee.com/unitedrhino/share/ctxs"
"gitee.com/unitedrhino/share/utils"
ws "gitee.com/unitedrhino/share/websocket"
"github.com/gorilla/websocket"
"github.com/zeromicro/go-zero/core/logx"
"net/http"
)
type WebsocketConnectLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewWebsocketConnectLogic(ctx context.Context, svcCtx *svc.ServiceContext) *WebsocketConnectLogic {
return &WebsocketConnectLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
func (l *WebsocketConnectLogic) WebsocketConnect(r *http.Request, conn *websocket.Conn) error {
userID := ctxs.GetUserCtx(l.ctx).UserID
//创建ws连接
wsClient := ws.NewConn(l.ctx, userID, l.svcCtx.Ws, r, conn)
//开启读取进程
utils.Go(l.ctx, wsClient.StartRead)
//开启发送进程
utils.Go(l.ctx, wsClient.StartWrite)
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/unitedrhino/core.git
git@gitee.com:unitedrhino/core.git
unitedrhino
core
中台模块
v0.2.1

搜索帮助