overflow_gateway_websocket/rpc/rpc_gateway_handler.go
crusader 38f2405ff3 ing
2017-11-14 15:27:18 +09:00

11 lines
207 B
Go

package rpc
import "github.com/valyala/fasthttp"
type RPCGatewayHandler interface {
Init() error
Handshake(ctx *fasthttp.RequestCtx) (id string, extensionsHeader *fasthttp.ResponseHeader)
Validate()
}