代码拉取完成,页面将自动刷新
package v8go
import (
"context"
"fmt"
"golang.org/x/net/websocket"
)
type ClientConnection struct {
Connection *websocket.Conn
ctx context.Context
cancel context.CancelFunc
ProcessFun func(connection *ClientConnection, data []byte)
}
func NewClientConnection(parentCtx context.Context, conn *websocket.Conn, procss func(connection *ClientConnection, data []byte)) (*ClientConnection, context.Context) {
ctx, cancel := context.WithCancel(parentCtx)
c := &ClientConnection{
Connection: conn,
ctx: ctx,
cancel: cancel,
ProcessFun: procss,
}
go c.Run()
return c, ctx
}
func (c *ClientConnection) Stop() {
c.cancel()
}
func (c *ClientConnection) Run() {
defer c.cancel()
defer func() {
fmt.Println("connection closed")
_ = c.Connection.Close()
}()
go c.readLoop()
select {
case <-c.ctx.Done():
return
}
}
func (c *ClientConnection) readLoop() {
defer c.cancel()
for {
select {
case <-c.ctx.Done():
return
default:
data2 := make([]byte, 4096)
err := websocket.Message.Receive(c.Connection, &data2)
if err != nil {
return
}
c.ProcessFun(c, data2)
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。