2020-09-29 11:15:29 +03:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
2021-12-29 02:05:30 +03:00
// versions:
2024-12-11 02:00:29 +03:00
// - protoc-gen-go-grpc v1.5.1
// - protoc v5.28.3
2021-12-29 02:05:30 +03:00
// source: test.proto
2020-09-29 11:15:29 +03:00
package helloworld
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.
2024-12-11 02:00:29 +03:00
// Requires gRPC-Go v1.64.0 or later.
const _ = grpc . SupportPackageIsVersion9
2020-09-29 11:15:29 +03:00
2023-03-05 15:03:48 +03:00
const (
Test_Call_FullMethodName = "/helloworld.Test/Call"
Test_Stream_FullMethodName = "/helloworld.Test/Stream"
)
2020-09-29 11:15:29 +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 {
Call ( ctx context . Context , in * Request , opts ... grpc . CallOption ) ( * Response , error )
2024-12-11 02:00:29 +03:00
Stream ( ctx context . Context , opts ... grpc . CallOption ) ( grpc . BidiStreamingClient [ Request , Response ] , error )
2020-09-29 11:15:29 +03:00
}
type testClient struct {
cc grpc . ClientConnInterface
}
func NewTestClient ( cc grpc . ClientConnInterface ) TestClient {
return & testClient { cc }
}
func ( c * testClient ) Call ( ctx context . Context , in * Request , opts ... grpc . CallOption ) ( * Response , error ) {
2024-12-11 02:00:29 +03:00
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
2020-09-29 11:15:29 +03:00
out := new ( Response )
2024-12-11 02:00:29 +03:00
err := c . cc . Invoke ( ctx , Test_Call_FullMethodName , in , out , cOpts ... )
2020-09-29 11:15:29 +03:00
if err != nil {
return nil , err
}
return out , nil
}
2024-12-11 02:00:29 +03:00
func ( c * testClient ) Stream ( ctx context . Context , opts ... grpc . CallOption ) ( grpc . BidiStreamingClient [ Request , Response ] , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
stream , err := c . cc . NewStream ( ctx , & Test_ServiceDesc . Streams [ 0 ] , Test_Stream_FullMethodName , cOpts ... )
2020-09-29 11:15:29 +03:00
if err != nil {
return nil , err
}
2024-12-11 02:00:29 +03:00
x := & grpc . GenericClientStream [ Request , Response ] { ClientStream : stream }
2020-09-29 11:15:29 +03:00
return x , nil
}
2024-12-11 02:00:29 +03:00
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
type Test_StreamClient = grpc . BidiStreamingClient [ Request , Response ]
2020-09-29 11:15:29 +03:00
// TestServer is the server API for Test service.
// All implementations must embed UnimplementedTestServer
2024-12-11 02:00:29 +03:00
// for forward compatibility.
2020-09-29 11:15:29 +03:00
type TestServer interface {
Call ( context . Context , * Request ) ( * Response , error )
2024-12-11 02:00:29 +03:00
Stream ( grpc . BidiStreamingServer [ Request , Response ] ) error
2020-09-29 11:15:29 +03:00
mustEmbedUnimplementedTestServer ( )
}
2024-12-11 02:00:29 +03:00
// UnimplementedTestServer must be embedded to have
// forward compatible implementations.
//
// NOTE: this should be embedded by value instead of pointer to avoid a nil
// pointer dereference when methods are called.
type UnimplementedTestServer struct { }
2020-09-29 11:15:29 +03:00
2021-03-22 23:11:01 +03:00
func ( UnimplementedTestServer ) Call ( context . Context , * Request ) ( * Response , error ) {
2020-09-29 11:15:29 +03:00
return nil , status . Errorf ( codes . Unimplemented , "method Call not implemented" )
}
2024-12-11 02:00:29 +03:00
func ( UnimplementedTestServer ) Stream ( grpc . BidiStreamingServer [ Request , Response ] ) error {
2020-09-29 11:15:29 +03:00
return status . Errorf ( codes . Unimplemented , "method Stream not implemented" )
}
2021-03-22 23:11:01 +03:00
func ( UnimplementedTestServer ) mustEmbedUnimplementedTestServer ( ) { }
2024-12-11 02:00:29 +03:00
func ( UnimplementedTestServer ) testEmbeddedByValue ( ) { }
2020-09-29 11:15:29 +03:00
2021-03-22 23:11:01 +03:00
// 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 ) {
2024-12-11 02:00:29 +03:00
// If the following call pancis, it indicates UnimplementedTestServer was
// embedded by pointer and is nil. This will cause panics if an
// unimplemented method is ever invoked, so we test this at initialization
// time to prevent it from happening at runtime later due to I/O.
if t , ok := srv . ( interface { testEmbeddedByValue ( ) } ) ; ok {
t . testEmbeddedByValue ( )
}
2021-03-22 23:11:01 +03:00
s . RegisterService ( & Test_ServiceDesc , srv )
2020-09-29 11:15:29 +03:00
}
func _Test_Call_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
in := new ( Request )
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 ,
2020-09-29 11:15:29 +03:00
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( TestServer ) . Call ( ctx , req . ( * Request ) )
}
return interceptor ( ctx , in , info , handler )
}
func _Test_Stream_Handler ( srv interface { } , stream grpc . ServerStream ) error {
2024-12-11 02:00:29 +03:00
return srv . ( TestServer ) . Stream ( & grpc . GenericServerStream [ Request , Response ] { ServerStream : stream } )
2020-09-29 11:15:29 +03:00
}
2024-12-11 02:00:29 +03:00
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
type Test_StreamServer = grpc . BidiStreamingServer [ Request , Response ]
2020-09-29 11:15:29 +03:00
2021-03-22 23:11:01 +03:00
// 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 {
2020-09-29 11:15:29 +03:00
ServiceName : "helloworld.Test" ,
HandlerType : ( * TestServer ) ( nil ) ,
Methods : [ ] grpc . MethodDesc {
{
MethodName : "Call" ,
Handler : _Test_Call_Handler ,
} ,
} ,
Streams : [ ] grpc . StreamDesc {
{
StreamName : "Stream" ,
Handler : _Test_Stream_Handler ,
ServerStreams : true ,
ClientStreams : true ,
} ,
} ,
Metadata : "test.proto" ,
}