ing
This commit is contained in:
parent
4e048d56b9
commit
942a854fe1
|
@ -8,10 +8,10 @@ import (
|
|||
cwf "git.loafle.net/commons_go/websocket_fasthttp"
|
||||
)
|
||||
|
||||
type FastHTTPServletHandlers struct {
|
||||
type ServletHandlers struct {
|
||||
}
|
||||
|
||||
func (sh *FastHTTPServletHandlers) GetRequest(servletCTX rpc.ServletContext, codec protocol.ServerCodec, conn interface{}) (protocol.ServerRequestCodec, error) {
|
||||
func (sh *ServletHandlers) GetRequest(servletCTX rpc.ServletContext, codec protocol.ServerCodec, conn interface{}) (protocol.ServerRequestCodec, error) {
|
||||
soc := conn.(cwf.Socket)
|
||||
_, r, err := soc.NextReader()
|
||||
|
||||
|
@ -20,7 +20,7 @@ func (sh *FastHTTPServletHandlers) GetRequest(servletCTX rpc.ServletContext, cod
|
|||
return requestCodec, err
|
||||
}
|
||||
|
||||
func (sh *FastHTTPServletHandlers) SendResponse(servletCTX rpc.ServletContext, conn interface{}, requestCodec protocol.ServerRequestCodec, result interface{}, err error) error {
|
||||
func (sh *ServletHandlers) SendResponse(servletCTX rpc.ServletContext, conn interface{}, requestCodec protocol.ServerRequestCodec, result interface{}, err error) error {
|
||||
soc := conn.(cwf.Socket)
|
||||
|
||||
wc, wErr := soc.NextWriter(websocket.TextMessage)
|
||||
|
@ -41,7 +41,7 @@ func (sh *FastHTTPServletHandlers) SendResponse(servletCTX rpc.ServletContext, c
|
|||
return nil
|
||||
}
|
||||
|
||||
func (sh *FastHTTPServletHandlers) SendNotification(servletCTX rpc.ServletContext, conn interface{}, codec protocol.ServerCodec, method string, args ...interface{}) error {
|
||||
func (sh *ServletHandlers) SendNotification(servletCTX rpc.ServletContext, conn interface{}, codec protocol.ServerCodec, method string, args ...interface{}) error {
|
||||
soc := conn.(cwf.Socket)
|
||||
|
||||
wc, wErr := soc.NextWriter(websocket.TextMessage)
|
||||
|
|
Loading…
Reference in New Issue
Block a user