You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
262 lines
9.7 KiB
262 lines
9.7 KiB
4 years ago
|
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
||
|
|
||
3 years ago
|
package echo
|
||
4 years ago
|
|
||
|
import (
|
||
|
context "context"
|
||
|
grpc "google.golang.org/grpc"
|
||
|
codes "google.golang.org/grpc/codes"
|
||
|
status "google.golang.org/grpc/status"
|
||
|
)
|
||
|
|
||
|
// This is a compile-time assertion to ensure that this generated file
|
||
|
// is compatible with the grpc package it is being compiled against.
|
||
4 years ago
|
// Requires gRPC-Go v1.32.0 or later.
|
||
4 years ago
|
const _ = grpc.SupportPackageIsVersion7
|
||
|
|
||
|
// EchoServiceClient is the client API for EchoService 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.
|
||
|
type EchoServiceClient interface {
|
||
|
// Echo method receives a simple message and returns it.
|
||
|
//
|
||
|
// The message posted as the id parameter will also be
|
||
|
// returned.
|
||
|
Echo(ctx context.Context, in *SimpleMessage, opts ...grpc.CallOption) (*SimpleMessage, error)
|
||
|
// EchoBody method receives a simple message and returns it.
|
||
|
EchoBody(ctx context.Context, in *SimpleMessage, opts ...grpc.CallOption) (*SimpleMessage, error)
|
||
4 years ago
|
// EchoResponseBody method receives a simple message and returns it.
|
||
|
EchoResponseBody(ctx context.Context, in *DynamicMessageUpdate, opts ...grpc.CallOption) (*DynamicMessageUpdate, error)
|
||
4 years ago
|
// EchoDelete method receives a simple message and returns it.
|
||
|
EchoDelete(ctx context.Context, in *SimpleMessage, opts ...grpc.CallOption) (*SimpleMessage, error)
|
||
|
// EchoPatch method receives a NonStandardUpdateRequest and returns it.
|
||
|
EchoPatch(ctx context.Context, in *DynamicMessageUpdate, opts ...grpc.CallOption) (*DynamicMessageUpdate, error)
|
||
|
}
|
||
|
|
||
|
type echoServiceClient struct {
|
||
|
cc grpc.ClientConnInterface
|
||
|
}
|
||
|
|
||
|
func NewEchoServiceClient(cc grpc.ClientConnInterface) EchoServiceClient {
|
||
|
return &echoServiceClient{cc}
|
||
|
}
|
||
|
|
||
|
func (c *echoServiceClient) Echo(ctx context.Context, in *SimpleMessage, opts ...grpc.CallOption) (*SimpleMessage, error) {
|
||
|
out := new(SimpleMessage)
|
||
3 years ago
|
err := c.cc.Invoke(ctx, "/echo.EchoService/Echo", in, out, opts...)
|
||
4 years ago
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
|
func (c *echoServiceClient) EchoBody(ctx context.Context, in *SimpleMessage, opts ...grpc.CallOption) (*SimpleMessage, error) {
|
||
|
out := new(SimpleMessage)
|
||
3 years ago
|
err := c.cc.Invoke(ctx, "/echo.EchoService/EchoBody", in, out, opts...)
|
||
4 years ago
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
4 years ago
|
func (c *echoServiceClient) EchoResponseBody(ctx context.Context, in *DynamicMessageUpdate, opts ...grpc.CallOption) (*DynamicMessageUpdate, error) {
|
||
|
out := new(DynamicMessageUpdate)
|
||
3 years ago
|
err := c.cc.Invoke(ctx, "/echo.EchoService/EchoResponseBody", in, out, opts...)
|
||
4 years ago
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
4 years ago
|
func (c *echoServiceClient) EchoDelete(ctx context.Context, in *SimpleMessage, opts ...grpc.CallOption) (*SimpleMessage, error) {
|
||
|
out := new(SimpleMessage)
|
||
3 years ago
|
err := c.cc.Invoke(ctx, "/echo.EchoService/EchoDelete", in, out, opts...)
|
||
4 years ago
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
|
func (c *echoServiceClient) EchoPatch(ctx context.Context, in *DynamicMessageUpdate, opts ...grpc.CallOption) (*DynamicMessageUpdate, error) {
|
||
|
out := new(DynamicMessageUpdate)
|
||
3 years ago
|
err := c.cc.Invoke(ctx, "/echo.EchoService/EchoPatch", in, out, opts...)
|
||
4 years ago
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
|
// EchoServiceServer is the server API for EchoService service.
|
||
|
// All implementations must embed UnimplementedEchoServiceServer
|
||
|
// for forward compatibility
|
||
|
type EchoServiceServer interface {
|
||
|
// Echo method receives a simple message and returns it.
|
||
|
//
|
||
|
// The message posted as the id parameter will also be
|
||
|
// returned.
|
||
|
Echo(context.Context, *SimpleMessage) (*SimpleMessage, error)
|
||
|
// EchoBody method receives a simple message and returns it.
|
||
|
EchoBody(context.Context, *SimpleMessage) (*SimpleMessage, error)
|
||
4 years ago
|
// EchoResponseBody method receives a simple message and returns it.
|
||
|
EchoResponseBody(context.Context, *DynamicMessageUpdate) (*DynamicMessageUpdate, error)
|
||
4 years ago
|
// EchoDelete method receives a simple message and returns it.
|
||
|
EchoDelete(context.Context, *SimpleMessage) (*SimpleMessage, error)
|
||
|
// EchoPatch method receives a NonStandardUpdateRequest and returns it.
|
||
|
EchoPatch(context.Context, *DynamicMessageUpdate) (*DynamicMessageUpdate, error)
|
||
|
mustEmbedUnimplementedEchoServiceServer()
|
||
|
}
|
||
|
|
||
|
// UnimplementedEchoServiceServer must be embedded to have forward compatible implementations.
|
||
|
type UnimplementedEchoServiceServer struct {
|
||
|
}
|
||
|
|
||
|
func (UnimplementedEchoServiceServer) Echo(context.Context, *SimpleMessage) (*SimpleMessage, error) {
|
||
|
return nil, status.Errorf(codes.Unimplemented, "method Echo not implemented")
|
||
|
}
|
||
|
func (UnimplementedEchoServiceServer) EchoBody(context.Context, *SimpleMessage) (*SimpleMessage, error) {
|
||
|
return nil, status.Errorf(codes.Unimplemented, "method EchoBody not implemented")
|
||
|
}
|
||
4 years ago
|
func (UnimplementedEchoServiceServer) EchoResponseBody(context.Context, *DynamicMessageUpdate) (*DynamicMessageUpdate, error) {
|
||
|
return nil, status.Errorf(codes.Unimplemented, "method EchoResponseBody not implemented")
|
||
|
}
|
||
4 years ago
|
func (UnimplementedEchoServiceServer) EchoDelete(context.Context, *SimpleMessage) (*SimpleMessage, error) {
|
||
|
return nil, status.Errorf(codes.Unimplemented, "method EchoDelete not implemented")
|
||
|
}
|
||
|
func (UnimplementedEchoServiceServer) EchoPatch(context.Context, *DynamicMessageUpdate) (*DynamicMessageUpdate, error) {
|
||
|
return nil, status.Errorf(codes.Unimplemented, "method EchoPatch not implemented")
|
||
|
}
|
||
|
func (UnimplementedEchoServiceServer) mustEmbedUnimplementedEchoServiceServer() {}
|
||
|
|
||
|
// UnsafeEchoServiceServer may be embedded to opt out of forward compatibility for this service.
|
||
|
// Use of this interface is not recommended, as added methods to EchoServiceServer will
|
||
|
// result in compilation errors.
|
||
|
type UnsafeEchoServiceServer interface {
|
||
|
mustEmbedUnimplementedEchoServiceServer()
|
||
|
}
|
||
|
|
||
|
func RegisterEchoServiceServer(s grpc.ServiceRegistrar, srv EchoServiceServer) {
|
||
4 years ago
|
s.RegisterService(&EchoService_ServiceDesc, srv)
|
||
4 years ago
|
}
|
||
|
|
||
|
func _EchoService_Echo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||
|
in := new(SimpleMessage)
|
||
|
if err := dec(in); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if interceptor == nil {
|
||
|
return srv.(EchoServiceServer).Echo(ctx, in)
|
||
|
}
|
||
|
info := &grpc.UnaryServerInfo{
|
||
|
Server: srv,
|
||
3 years ago
|
FullMethod: "/echo.EchoService/Echo",
|
||
4 years ago
|
}
|
||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||
|
return srv.(EchoServiceServer).Echo(ctx, req.(*SimpleMessage))
|
||
|
}
|
||
|
return interceptor(ctx, in, info, handler)
|
||
|
}
|
||
|
|
||
|
func _EchoService_EchoBody_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||
|
in := new(SimpleMessage)
|
||
|
if err := dec(in); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if interceptor == nil {
|
||
|
return srv.(EchoServiceServer).EchoBody(ctx, in)
|
||
|
}
|
||
|
info := &grpc.UnaryServerInfo{
|
||
|
Server: srv,
|
||
3 years ago
|
FullMethod: "/echo.EchoService/EchoBody",
|
||
4 years ago
|
}
|
||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||
|
return srv.(EchoServiceServer).EchoBody(ctx, req.(*SimpleMessage))
|
||
|
}
|
||
|
return interceptor(ctx, in, info, handler)
|
||
|
}
|
||
|
|
||
4 years ago
|
func _EchoService_EchoResponseBody_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||
|
in := new(DynamicMessageUpdate)
|
||
|
if err := dec(in); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if interceptor == nil {
|
||
|
return srv.(EchoServiceServer).EchoResponseBody(ctx, in)
|
||
|
}
|
||
|
info := &grpc.UnaryServerInfo{
|
||
|
Server: srv,
|
||
3 years ago
|
FullMethod: "/echo.EchoService/EchoResponseBody",
|
||
4 years ago
|
}
|
||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||
|
return srv.(EchoServiceServer).EchoResponseBody(ctx, req.(*DynamicMessageUpdate))
|
||
|
}
|
||
|
return interceptor(ctx, in, info, handler)
|
||
|
}
|
||
|
|
||
4 years ago
|
func _EchoService_EchoDelete_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||
|
in := new(SimpleMessage)
|
||
|
if err := dec(in); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if interceptor == nil {
|
||
|
return srv.(EchoServiceServer).EchoDelete(ctx, in)
|
||
|
}
|
||
|
info := &grpc.UnaryServerInfo{
|
||
|
Server: srv,
|
||
3 years ago
|
FullMethod: "/echo.EchoService/EchoDelete",
|
||
4 years ago
|
}
|
||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||
|
return srv.(EchoServiceServer).EchoDelete(ctx, req.(*SimpleMessage))
|
||
|
}
|
||
|
return interceptor(ctx, in, info, handler)
|
||
|
}
|
||
|
|
||
|
func _EchoService_EchoPatch_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||
|
in := new(DynamicMessageUpdate)
|
||
|
if err := dec(in); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if interceptor == nil {
|
||
|
return srv.(EchoServiceServer).EchoPatch(ctx, in)
|
||
|
}
|
||
|
info := &grpc.UnaryServerInfo{
|
||
|
Server: srv,
|
||
3 years ago
|
FullMethod: "/echo.EchoService/EchoPatch",
|
||
4 years ago
|
}
|
||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||
|
return srv.(EchoServiceServer).EchoPatch(ctx, req.(*DynamicMessageUpdate))
|
||
|
}
|
||
|
return interceptor(ctx, in, info, handler)
|
||
|
}
|
||
|
|
||
4 years ago
|
// EchoService_ServiceDesc is the grpc.ServiceDesc for EchoService service.
|
||
|
// It's only intended for direct use with grpc.RegisterService,
|
||
|
// and not to be introspected or modified (even as a copy)
|
||
|
var EchoService_ServiceDesc = grpc.ServiceDesc{
|
||
3 years ago
|
ServiceName: "echo.EchoService",
|
||
4 years ago
|
HandlerType: (*EchoServiceServer)(nil),
|
||
|
Methods: []grpc.MethodDesc{
|
||
|
{
|
||
|
MethodName: "Echo",
|
||
|
Handler: _EchoService_Echo_Handler,
|
||
|
},
|
||
|
{
|
||
|
MethodName: "EchoBody",
|
||
|
Handler: _EchoService_EchoBody_Handler,
|
||
|
},
|
||
4 years ago
|
{
|
||
|
MethodName: "EchoResponseBody",
|
||
|
Handler: _EchoService_EchoResponseBody_Handler,
|
||
|
},
|
||
4 years ago
|
{
|
||
|
MethodName: "EchoDelete",
|
||
|
Handler: _EchoService_EchoDelete_Handler,
|
||
|
},
|
||
|
{
|
||
|
MethodName: "EchoPatch",
|
||
|
Handler: _EchoService_EchoPatch_Handler,
|
||
|
},
|
||
|
},
|
||
|
Streams: []grpc.StreamDesc{},
|
||
3 years ago
|
Metadata: "echo_service.proto",
|
||
4 years ago
|
}
|