Documentation ¶
Overview ¶
The connect.ping.v1 package contains an echo service designed to test the connect-go implementation.
Index ¶
- Constants
- func NewPingServiceHandler(svc PingServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)
- type PingServiceClient
- type PingServiceHandler
- type UnimplementedPingServiceHandler
- func (UnimplementedPingServiceHandler) CountUp(context.Context, *connect_go.Request[v1.CountUpRequest], ...) error
- func (UnimplementedPingServiceHandler) CumSum(context.Context, *connect_go.BidiStream[v1.CumSumRequest, v1.CumSumResponse]) error
- func (UnimplementedPingServiceHandler) Fail(context.Context, *connect_go.Request[v1.FailRequest]) (*connect_go.Response[v1.FailResponse], error)
- func (UnimplementedPingServiceHandler) Ping(context.Context, *connect_go.Request[v1.PingRequest]) (*connect_go.Response[v1.PingResponse], error)
- func (UnimplementedPingServiceHandler) Sum(context.Context, *connect_go.ClientStream[v1.SumRequest]) (*connect_go.Response[v1.SumResponse], error)
Constants ¶
const ( // PingServicePingProcedure is the fully-qualified name of the PingService's Ping RPC. PingServicePingProcedure = "/connect.ping.v1.PingService/Ping" // PingServiceFailProcedure is the fully-qualified name of the PingService's Fail RPC. PingServiceFailProcedure = "/connect.ping.v1.PingService/Fail" // PingServiceSumProcedure is the fully-qualified name of the PingService's Sum RPC. PingServiceSumProcedure = "/connect.ping.v1.PingService/Sum" // PingServiceCountUpProcedure is the fully-qualified name of the PingService's CountUp RPC. PingServiceCountUpProcedure = "/connect.ping.v1.PingService/CountUp" // PingServiceCumSumProcedure is the fully-qualified name of the PingService's CumSum RPC. PingServiceCumSumProcedure = "/connect.ping.v1.PingService/CumSum" )
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 (
// PingServiceName is the fully-qualified name of the PingService service.
PingServiceName = "connect.ping.v1.PingService"
)
Variables ¶
This section is empty.
Functions ¶
func NewPingServiceHandler ¶
func NewPingServiceHandler(svc PingServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)
NewPingServiceHandler 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 PingServiceClient ¶
type PingServiceClient interface { // Ping sends a ping to the server to determine if it's reachable. Ping(context.Context, *connect_go.Request[v1.PingRequest]) (*connect_go.Response[v1.PingResponse], error) // Fail always fails. Fail(context.Context, *connect_go.Request[v1.FailRequest]) (*connect_go.Response[v1.FailResponse], error) // Sum calculates the sum of the numbers sent on the stream. Sum(context.Context) *connect_go.ClientStreamForClient[v1.SumRequest, v1.SumResponse] // CountUp returns a stream of the numbers up to the given request. CountUp(context.Context, *connect_go.Request[v1.CountUpRequest]) (*connect_go.ServerStreamForClient[v1.CountUpResponse], error) // CumSum determines the cumulative sum of all the numbers sent on the stream. CumSum(context.Context) *connect_go.BidiStreamForClient[v1.CumSumRequest, v1.CumSumResponse] }
PingServiceClient is a client for the connect.ping.v1.PingService service.
func NewPingServiceClient ¶
func NewPingServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.ClientOption) PingServiceClient
NewPingServiceClient constructs a client for the connect.ping.v1.PingService 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 PingServiceHandler ¶
type PingServiceHandler interface { // Ping sends a ping to the server to determine if it's reachable. Ping(context.Context, *connect_go.Request[v1.PingRequest]) (*connect_go.Response[v1.PingResponse], error) // Fail always fails. Fail(context.Context, *connect_go.Request[v1.FailRequest]) (*connect_go.Response[v1.FailResponse], error) // Sum calculates the sum of the numbers sent on the stream. Sum(context.Context, *connect_go.ClientStream[v1.SumRequest]) (*connect_go.Response[v1.SumResponse], error) // CountUp returns a stream of the numbers up to the given request. CountUp(context.Context, *connect_go.Request[v1.CountUpRequest], *connect_go.ServerStream[v1.CountUpResponse]) error // CumSum determines the cumulative sum of all the numbers sent on the stream. CumSum(context.Context, *connect_go.BidiStream[v1.CumSumRequest, v1.CumSumResponse]) error }
PingServiceHandler is an implementation of the connect.ping.v1.PingService service.
type UnimplementedPingServiceHandler ¶
type UnimplementedPingServiceHandler struct{}
UnimplementedPingServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedPingServiceHandler) CountUp ¶
func (UnimplementedPingServiceHandler) CountUp(context.Context, *connect_go.Request[v1.CountUpRequest], *connect_go.ServerStream[v1.CountUpResponse]) error
func (UnimplementedPingServiceHandler) CumSum ¶
func (UnimplementedPingServiceHandler) CumSum(context.Context, *connect_go.BidiStream[v1.CumSumRequest, v1.CumSumResponse]) error
func (UnimplementedPingServiceHandler) Fail ¶
func (UnimplementedPingServiceHandler) Fail(context.Context, *connect_go.Request[v1.FailRequest]) (*connect_go.Response[v1.FailResponse], error)
func (UnimplementedPingServiceHandler) Ping ¶
func (UnimplementedPingServiceHandler) Ping(context.Context, *connect_go.Request[v1.PingRequest]) (*connect_go.Response[v1.PingResponse], error)
func (UnimplementedPingServiceHandler) Sum ¶
func (UnimplementedPingServiceHandler) Sum(context.Context, *connect_go.ClientStream[v1.SumRequest]) (*connect_go.Response[v1.SumResponse], error)