Documentation
¶
Overview ¶
Package greeter is a reverse proxy.
It translates gRPC into RESTful JSON APIs.
Index ¶
- Constants
- Variables
- func NewGreeterEndpoints() []*api.Endpoint
- func RegisterGreeterGw(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error
- func RegisterGreeterGwClient(ctx context.Context, mux *runtime.ServeMux, client GreeterClient) error
- func RegisterGreeterGwFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, ...) (err error)
- func RegisterGreeterGwServer(ctx context.Context, mux *runtime.ServeMux, server GreeterServer) error
- func RegisterGreeterHandler(s server.Server, hdlr GreeterHandler, opts ...server.HandlerOption) error
- func RegisterGreeterServer(s grpc.ServiceRegistrar, srv GreeterServer)
- type GreeterClient
- type GreeterHandler
- type GreeterServer
- type GreeterService
- type UnimplementedGreeterServer
- type UnsafeGreeterServer
Constants ¶
const (
Greeter_Hello_FullMethodName = "/Greeter/Hello"
)
Variables ¶
var File_hello_proto protoreflect.FileDescriptor
var Greeter_ServiceDesc = grpc.ServiceDesc{ ServiceName: "Greeter", HandlerType: (*GreeterServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Hello", Handler: _Greeter_Hello_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "hello.proto", }
Greeter_ServiceDesc is the grpc.ServiceDesc for Greeter service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
Functions ¶
func NewGreeterEndpoints ¶
func RegisterGreeterGw ¶
RegisterGreeterGw registers the http handlers for service Greeter to "mux". The handlers forward requests to the grpc endpoint over "conn".
func RegisterGreeterGwClient ¶
func RegisterGreeterGwClient(ctx context.Context, mux *runtime.ServeMux, client GreeterClient) error
RegisterGreeterGwClient registers the http handlers for service Greeter to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "GreeterClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "GreeterClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "GreeterClient" to call the correct interceptors.
func RegisterGreeterGwFromEndpoint ¶
func RegisterGreeterGwFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)
RegisterGreeterGwFromEndpoint is same as RegisterGreeterGw but automatically dials to "endpoint" and closes the connection when "ctx" gets done.
func RegisterGreeterGwServer ¶
func RegisterGreeterGwServer(ctx context.Context, mux *runtime.ServeMux, server GreeterServer) error
RegisterGreeterGwServer registers the http handlers for service Greeter to "mux". UnaryRPC :call GreeterServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterGreeterGwFromEndpoint instead.
func RegisterGreeterHandler ¶
func RegisterGreeterHandler(s server.Server, hdlr GreeterHandler, opts ...server.HandlerOption) error
func RegisterGreeterServer ¶
func RegisterGreeterServer(s grpc.ServiceRegistrar, srv GreeterServer)
Types ¶
type GreeterClient ¶
type GreeterClient interface {
Hello(ctx context.Context, in *empty.Empty, opts ...grpc.CallOption) (*empty.Empty, error)
}
GreeterClient is the client API for Greeter service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
func NewGreeterClient ¶
func NewGreeterClient(cc grpc.ClientConnInterface) GreeterClient
type GreeterHandler ¶
type GreeterServer ¶
type GreeterServer interface { Hello(context.Context, *empty.Empty) (*empty.Empty, error) // contains filtered or unexported methods }
GreeterServer is the server API for Greeter service. All implementations must embed UnimplementedGreeterServer for forward compatibility
type GreeterService ¶
type GreeterService interface {
Hello(ctx context.Context, in *empty.Empty, opts ...client.CallOption) (*empty.Empty, error)
}
func NewGreeterService ¶
func NewGreeterService(name string, c client.Client) GreeterService
type UnimplementedGreeterServer ¶
type UnimplementedGreeterServer struct { }
UnimplementedGreeterServer must be embedded to have forward compatible implementations.
type UnsafeGreeterServer ¶
type UnsafeGreeterServer interface {
// contains filtered or unexported methods
}
UnsafeGreeterServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to GreeterServer will result in compilation errors.