2022-03-21 13:08:38 +03:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
2023-03-05 15:03:48 +03:00
// - protoc-gen-go-grpc v1.3.0
2023-01-07 19:16:48 +03:00
// - protoc v3.21.12
2023-03-04 23:30:53 +03:00
// source: ngpb.proto
2022-03-21 13:08:38 +03:00
package pb
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.
// Requires gRPC-Go v1.32.0 or later.
const _ = grpc . SupportPackageIsVersion7
2023-03-05 15:03:48 +03:00
const (
Test_Call_FullMethodName = "/test.v1.ngpb.Test/Call"
)
2022-03-21 13:08:38 +03:00
// TestClient is the client API for Test 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 TestClient interface {
2023-01-07 19:16:48 +03:00
// option (micro.api.micro_service) = { client_wrappers: ["one","two"]; };
Call ( ctx context . Context , in * CallReq , opts ... grpc . CallOption ) ( * CallRsp , error )
2022-03-21 13:08:38 +03:00
}
type testClient struct {
cc grpc . ClientConnInterface
}
func NewTestClient ( cc grpc . ClientConnInterface ) TestClient {
return & testClient { cc }
}
2023-01-07 19:16:48 +03:00
func ( c * testClient ) Call ( ctx context . Context , in * CallReq , opts ... grpc . CallOption ) ( * CallRsp , error ) {
out := new ( CallRsp )
2023-03-05 15:03:48 +03:00
err := c . cc . Invoke ( ctx , Test_Call_FullMethodName , in , out , opts ... )
2022-03-21 13:08:38 +03:00
if err != nil {
return nil , err
}
return out , nil
}
// TestServer is the server API for Test service.
// All implementations must embed UnimplementedTestServer
// for forward compatibility
type TestServer interface {
2023-01-07 19:16:48 +03:00
// option (micro.api.micro_service) = { client_wrappers: ["one","two"]; };
Call ( context . Context , * CallReq ) ( * CallRsp , error )
2022-03-21 13:08:38 +03:00
mustEmbedUnimplementedTestServer ( )
}
// UnimplementedTestServer must be embedded to have forward compatible implementations.
type UnimplementedTestServer struct {
}
2023-01-07 19:16:48 +03:00
func ( UnimplementedTestServer ) Call ( context . Context , * CallReq ) ( * CallRsp , error ) {
2022-03-21 13:08:38 +03:00
return nil , status . Errorf ( codes . Unimplemented , "method Call not implemented" )
}
func ( UnimplementedTestServer ) mustEmbedUnimplementedTestServer ( ) { }
// UnsafeTestServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to TestServer will
// result in compilation errors.
type UnsafeTestServer interface {
mustEmbedUnimplementedTestServer ( )
}
func RegisterTestServer ( s grpc . ServiceRegistrar , srv TestServer ) {
s . RegisterService ( & Test_ServiceDesc , srv )
}
func _Test_Call_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
2023-01-07 19:16:48 +03:00
in := new ( CallReq )
2022-03-21 13:08:38 +03:00
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
return srv . ( TestServer ) . Call ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
2023-03-05 15:03:48 +03:00
FullMethod : Test_Call_FullMethodName ,
2022-03-21 13:08:38 +03:00
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
2023-01-07 19:16:48 +03:00
return srv . ( TestServer ) . Call ( ctx , req . ( * CallReq ) )
2022-03-21 13:08:38 +03:00
}
return interceptor ( ctx , in , info , handler )
}
// Test_ServiceDesc is the grpc.ServiceDesc for Test service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var Test_ServiceDesc = grpc . ServiceDesc {
2023-03-04 23:30:53 +03:00
ServiceName : "test.v1.ngpb.Test" ,
2022-03-21 13:08:38 +03:00
HandlerType : ( * TestServer ) ( nil ) ,
Methods : [ ] grpc . MethodDesc {
{
MethodName : "Call" ,
Handler : _Test_Call_Handler ,
} ,
} ,
Streams : [ ] grpc . StreamDesc { } ,
2023-03-04 23:30:53 +03:00
Metadata : "ngpb.proto" ,
2022-03-21 13:08:38 +03:00
}