Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // UnaryForwarder serializes protobuf message to JSON and removes fields using query parameter `fields`. // The `fields` parameter example: // fields=items.metadata.name,items.spec - response should include only items.metadata.name and items.spec fields // fields=-items.metadata.name - response should include all fields except items.metadata.name UnaryForwarder = func( ctx context.Context, mux *runtime.ServeMux, marshaler runtime.Marshaler, w http.ResponseWriter, req *http.Request, resp proto.Message, opts ...func(context.Context, http.ResponseWriter, proto.Message) error, ) { runtime.ForwardResponseMessage(ctx, mux, newMarshaler(req, false), w, req, resp, opts...) } // StreamForwarder serializes protobuf message to JSON and removes fields using query parameter `fields` StreamForwarder = func( ctx context.Context, mux *runtime.ServeMux, marshaler runtime.Marshaler, w http.ResponseWriter, req *http.Request, recv func() (proto.Message, error), opts ...func(context.Context, http.ResponseWriter, proto.Message) error, ) { isSSE := req.Header.Get("Accept") == "text/event-stream" if isSSE { w.Header().Set("Content-Type", "text/event-stream") w.Header().Set("Transfer-Encoding", "chunked") w.Header().Set("X-Content-Type-Options", "nosniff") } runtime.ForwardResponseStream(ctx, mux, newMarshaler(req, isSSE), w, req, recv, opts...) } )
Functions ¶
Types ¶
type DebugTransport ¶ added in v0.11.2
type DebugTransport struct {
T http.RoundTripper
}
DebugTransport is a HTTP Client Transport to enable debugging
Click to show internal directories.
Click to hide internal directories.