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

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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)
}