Documentation ¶
Index ¶
- Constants
- func NewDiscoveryServiceHandler(svc DiscoveryServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
- type DiscoveryServiceClient
- type DiscoveryServiceHandler
- type UnimplementedDiscoveryServiceHandler
- func (UnimplementedDiscoveryServiceHandler) Gateways(context.Context, *connect.Request[discovery.GatewaysRequest]) (*connect.Response[discovery.GatewaysResponse], error)
- func (UnimplementedDiscoveryServiceHandler) HiddenSegmentServices(context.Context, *connect.Request[discovery.HiddenSegmentServicesRequest]) (*connect.Response[discovery.HiddenSegmentServicesResponse], error)
Constants ¶
const ( // DiscoveryServiceGatewaysProcedure is the fully-qualified name of the DiscoveryService's Gateways // RPC. DiscoveryServiceGatewaysProcedure = "/proto.discovery.v1.DiscoveryService/Gateways" // DiscoveryServiceHiddenSegmentServicesProcedure is the fully-qualified name of the // DiscoveryService's HiddenSegmentServices RPC. DiscoveryServiceHiddenSegmentServicesProcedure = "/proto.discovery.v1.DiscoveryService/HiddenSegmentServices" )
These constants are the fully-qualified names of the RPCs defined in this package. They're exposed at runtime as Spec.Procedure and as the final two segments of the HTTP route.
Note that these are different from the fully-qualified method names used by google.golang.org/protobuf/reflect/protoreflect. To convert from these constants to reflection-formatted method names, remove the leading slash and convert the remaining slash to a period.
const (
// DiscoveryServiceName is the fully-qualified name of the DiscoveryService service.
DiscoveryServiceName = "proto.discovery.v1.DiscoveryService"
)
Variables ¶
This section is empty.
Functions ¶
func NewDiscoveryServiceHandler ¶
func NewDiscoveryServiceHandler(svc DiscoveryServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
NewDiscoveryServiceHandler builds an HTTP handler from the service implementation. It returns the path on which to mount the handler and the handler itself.
By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf and JSON codecs. They also support gzip compression.
Types ¶
type DiscoveryServiceClient ¶
type DiscoveryServiceClient interface { Gateways(context.Context, *connect.Request[discovery.GatewaysRequest]) (*connect.Response[discovery.GatewaysResponse], error) HiddenSegmentServices(context.Context, *connect.Request[discovery.HiddenSegmentServicesRequest]) (*connect.Response[discovery.HiddenSegmentServicesResponse], error) }
DiscoveryServiceClient is a client for the proto.discovery.v1.DiscoveryService service.
func NewDiscoveryServiceClient ¶
func NewDiscoveryServiceClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) DiscoveryServiceClient
NewDiscoveryServiceClient constructs a client for the proto.discovery.v1.DiscoveryService service. By default, it uses the Connect protocol with the binary Protobuf Codec, asks for gzipped responses, and sends uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the connect.WithGRPC() or connect.WithGRPCWeb() options.
The URL supplied here should be the base URL for the Connect or gRPC server (for example, http://api.acme.com or https://acme.com/grpc).
type DiscoveryServiceHandler ¶
type DiscoveryServiceHandler interface { Gateways(context.Context, *connect.Request[discovery.GatewaysRequest]) (*connect.Response[discovery.GatewaysResponse], error) HiddenSegmentServices(context.Context, *connect.Request[discovery.HiddenSegmentServicesRequest]) (*connect.Response[discovery.HiddenSegmentServicesResponse], error) }
DiscoveryServiceHandler is an implementation of the proto.discovery.v1.DiscoveryService service.
type UnimplementedDiscoveryServiceHandler ¶
type UnimplementedDiscoveryServiceHandler struct{}
UnimplementedDiscoveryServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedDiscoveryServiceHandler) Gateways ¶
func (UnimplementedDiscoveryServiceHandler) Gateways(context.Context, *connect.Request[discovery.GatewaysRequest]) (*connect.Response[discovery.GatewaysResponse], error)
func (UnimplementedDiscoveryServiceHandler) HiddenSegmentServices ¶
func (UnimplementedDiscoveryServiceHandler) HiddenSegmentServices(context.Context, *connect.Request[discovery.HiddenSegmentServicesRequest]) (*connect.Response[discovery.HiddenSegmentServicesResponse], error)