2025-08-24 11:35:52 +08:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.5.1
// - protoc v6.32.0
// source: skills/rpc/protobuf/hello_service/interface.proto
package hello_service
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.64.0 or later.
const _ = grpc . SupportPackageIsVersion9
const (
2025-08-24 14:34:22 +08:00
HelloService_Hello_FullMethodName = "/hello.HelloService/Hello"
HelloService_Channel_FullMethodName = "/hello.HelloService/Channel"
2025-08-24 11:35:52 +08:00
)
// HelloServiceClient is the client API for HelloService 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.
//
// The HelloService service definition.
type HelloServiceClient interface {
// rpc 声明接口
Hello ( ctx context . Context , in * Request , opts ... grpc . CallOption ) ( * Response , error )
2025-08-24 14:34:22 +08:00
Channel ( ctx context . Context , opts ... grpc . CallOption ) ( grpc . BidiStreamingClient [ Request , Response ] , error )
2025-08-24 11:35:52 +08:00
}
type helloServiceClient struct {
cc grpc . ClientConnInterface
}
func NewHelloServiceClient ( cc grpc . ClientConnInterface ) HelloServiceClient {
return & helloServiceClient { cc }
}
func ( c * helloServiceClient ) Hello ( ctx context . Context , in * Request , opts ... grpc . CallOption ) ( * Response , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
out := new ( Response )
err := c . cc . Invoke ( ctx , HelloService_Hello_FullMethodName , in , out , cOpts ... )
if err != nil {
return nil , err
}
return out , nil
}
2025-08-24 14:34:22 +08:00
func ( c * helloServiceClient ) Channel ( ctx context . Context , opts ... grpc . CallOption ) ( grpc . BidiStreamingClient [ Request , Response ] , error ) {
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
stream , err := c . cc . NewStream ( ctx , & HelloService_ServiceDesc . Streams [ 0 ] , HelloService_Channel_FullMethodName , cOpts ... )
if err != nil {
return nil , err
}
x := & grpc . GenericClientStream [ Request , Response ] { ClientStream : stream }
return x , nil
}
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
type HelloService_ChannelClient = grpc . BidiStreamingClient [ Request , Response ]
2025-08-24 11:35:52 +08:00
// HelloServiceServer is the server API for HelloService service.
// All implementations must embed UnimplementedHelloServiceServer
// for forward compatibility.
//
// The HelloService service definition.
type HelloServiceServer interface {
// rpc 声明接口
Hello ( context . Context , * Request ) ( * Response , error )
2025-08-24 14:34:22 +08:00
Channel ( grpc . BidiStreamingServer [ Request , Response ] ) error
2025-08-24 11:35:52 +08:00
mustEmbedUnimplementedHelloServiceServer ( )
}
// UnimplementedHelloServiceServer 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 UnimplementedHelloServiceServer struct { }
func ( UnimplementedHelloServiceServer ) Hello ( context . Context , * Request ) ( * Response , error ) {
return nil , status . Errorf ( codes . Unimplemented , "method Hello not implemented" )
}
2025-08-24 14:34:22 +08:00
func ( UnimplementedHelloServiceServer ) Channel ( grpc . BidiStreamingServer [ Request , Response ] ) error {
return status . Errorf ( codes . Unimplemented , "method Channel not implemented" )
}
2025-08-24 11:35:52 +08:00
func ( UnimplementedHelloServiceServer ) mustEmbedUnimplementedHelloServiceServer ( ) { }
func ( UnimplementedHelloServiceServer ) testEmbeddedByValue ( ) { }
// UnsafeHelloServiceServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to HelloServiceServer will
// result in compilation errors.
type UnsafeHelloServiceServer interface {
mustEmbedUnimplementedHelloServiceServer ( )
}
func RegisterHelloServiceServer ( s grpc . ServiceRegistrar , srv HelloServiceServer ) {
// If the following call pancis, it indicates UnimplementedHelloServiceServer 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 ( )
}
s . RegisterService ( & HelloService_ServiceDesc , srv )
}
func _HelloService_Hello_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 . ( HelloServiceServer ) . Hello ( ctx , in )
}
info := & grpc . UnaryServerInfo {
Server : srv ,
FullMethod : HelloService_Hello_FullMethodName ,
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
return srv . ( HelloServiceServer ) . Hello ( ctx , req . ( * Request ) )
}
return interceptor ( ctx , in , info , handler )
}
2025-08-24 14:34:22 +08:00
func _HelloService_Channel_Handler ( srv interface { } , stream grpc . ServerStream ) error {
return srv . ( HelloServiceServer ) . Channel ( & grpc . GenericServerStream [ Request , Response ] { ServerStream : stream } )
}
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
type HelloService_ChannelServer = grpc . BidiStreamingServer [ Request , Response ]
2025-08-24 11:35:52 +08:00
// HelloService_ServiceDesc is the grpc.ServiceDesc for HelloService service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var HelloService_ServiceDesc = grpc . ServiceDesc {
ServiceName : "hello.HelloService" ,
HandlerType : ( * HelloServiceServer ) ( nil ) ,
Methods : [ ] grpc . MethodDesc {
{
MethodName : "Hello" ,
Handler : _HelloService_Hello_Handler ,
} ,
} ,
2025-08-24 14:34:22 +08:00
Streams : [ ] grpc . StreamDesc {
{
StreamName : "Channel" ,
Handler : _HelloService_Channel_Handler ,
ServerStreams : true ,
ClientStreams : true ,
} ,
} ,
2025-08-24 11:35:52 +08:00
Metadata : "skills/rpc/protobuf/hello_service/interface.proto" ,
}