overflow_gateway_websocket/rpc/rpc_gateway_handler.go

11 lines
207 B
Go
Raw Normal View History

2017-11-14 06:27:18 +00:00
package rpc
import "github.com/valyala/fasthttp"
type RPCGatewayHandler interface {
Init() error
Handshake(ctx *fasthttp.RequestCtx) (id string, extensionsHeader *fasthttp.ResponseHeader)
Validate()
}