Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client is an http.Handler that talks over RPC.
func NewClient ¶
func NewClient(client ghttpproto.HTTPClient, broker *plugin.GRPCBroker) *Client
NewClient returns an HTTP handler database instance connected to a remote HTTP handler instance
type ResponseWriter ¶
type ResponseWriter struct {
// contains filtered or unexported fields
}
func (*ResponseWriter) Body ¶
func (w *ResponseWriter) Body() *bytes.Buffer
func (*ResponseWriter) Header ¶
func (w *ResponseWriter) Header() http.Header
func (*ResponseWriter) StatusCode ¶
func (w *ResponseWriter) StatusCode() int
func (*ResponseWriter) WriteHeader ¶
func (w *ResponseWriter) WriteHeader(code int)
type Server ¶
type Server struct { ghttpproto.UnimplementedHTTPServer // contains filtered or unexported fields }
Server is an http.Handler that is managed over RPC.
func (*Server) Handle ¶
func (s *Server) Handle(ctx context.Context, req *ghttpproto.HTTPRequest) (*emptypb.Empty, error)
func (*Server) HandleSimple ¶
func (s *Server) HandleSimple(ctx context.Context, r *ghttpproto.HandleSimpleHTTPRequest) (*ghttpproto.HandleSimpleHTTPResponse, error)
HandleSimple handles http requests over http2 using a simple request response model. Websockets are not supported. Based on https://www.weave.works/blog/turtles-way-http-grpc/
Click to show internal directories.
Click to hide internal directories.