You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
557 B

package websocket
import (
"github.com/gin-gonic/gin"
serviceWs "goskeleton/app/service/websocket"
)
/**
websocket
https://github.com/gorilla/websocket/tree/master/examples
*/
type Ws struct {
}
// OnOpen 主要解决握手+协议升级
func (w *Ws) OnOpen(context *gin.Context) (*serviceWs.Ws, bool) {
return (&serviceWs.Ws{}).OnOpen(context)
}
// OnMessage 处理业务消息
func (w *Ws) OnMessage(serviceWs *serviceWs.Ws, context *gin.Context) {
serviceWs.OnMessage(context)
}