2024-10-23 16:13:16 +00:00
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
2024-10-31 13:26:25 +00:00
// - protoc-gen-go-grpc v1.5.1
2024-10-23 16:13:16 +00:00
// - protoc v5.28.2
// source: notify.proto
package proto
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-10-31 13:26:25 +00:00
// Requires gRPC-Go v1.64.0 or later.
const _ = grpc . SupportPackageIsVersion9
const (
NotifyService_NotifyUser_FullMethodName = "/proto.NotifyService/NotifyUser"
NotifyService_NotifyUserBatch_FullMethodName = "/proto.NotifyService/NotifyUserBatch"
NotifyService_NotifyAllUser_FullMethodName = "/proto.NotifyService/NotifyAllUser"
)
2024-10-23 16:13:16 +00:00
2024-10-31 13:07:53 +00:00
// NotifyServiceClient is the client API for NotifyService service.
2024-10-23 16:13:16 +00:00
//
// 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.
2024-10-31 13:07:53 +00:00
type NotifyServiceClient interface {
2024-10-23 16:13:16 +00:00
NotifyUser ( ctx context . Context , in * NotifyUserRequest , opts ... grpc . CallOption ) ( * NotifyResponse , error )
NotifyUserBatch ( ctx context . Context , in * NotifyUserBatchRequest , opts ... grpc . CallOption ) ( * NotifyResponse , error )
2024-10-31 14:40:10 +00:00
NotifyAllUser ( ctx context . Context , in * NotifyInfoPayload , opts ... grpc . CallOption ) ( * NotifyResponse , error )
2024-10-23 16:13:16 +00:00
}
2024-10-31 13:07:53 +00:00
type notifyServiceClient struct {
2024-10-23 16:13:16 +00:00
cc grpc . ClientConnInterface
}
2024-10-31 13:07:53 +00:00
func NewNotifyServiceClient ( cc grpc . ClientConnInterface ) NotifyServiceClient {
return & notifyServiceClient { cc }
2024-10-23 16:13:16 +00:00
}
2024-10-31 13:07:53 +00:00
func ( c * notifyServiceClient ) NotifyUser ( ctx context . Context , in * NotifyUserRequest , opts ... grpc . CallOption ) ( * NotifyResponse , error ) {
2024-10-31 13:26:25 +00:00
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
2024-10-23 16:13:16 +00:00
out := new ( NotifyResponse )
2024-10-31 13:26:25 +00:00
err := c . cc . Invoke ( ctx , NotifyService_NotifyUser_FullMethodName , in , out , cOpts ... )
2024-10-23 16:13:16 +00:00
if err != nil {
return nil , err
}
return out , nil
}
2024-10-31 13:07:53 +00:00
func ( c * notifyServiceClient ) NotifyUserBatch ( ctx context . Context , in * NotifyUserBatchRequest , opts ... grpc . CallOption ) ( * NotifyResponse , error ) {
2024-10-31 13:26:25 +00:00
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
2024-10-23 16:13:16 +00:00
out := new ( NotifyResponse )
2024-10-31 13:26:25 +00:00
err := c . cc . Invoke ( ctx , NotifyService_NotifyUserBatch_FullMethodName , in , out , cOpts ... )
2024-10-23 16:13:16 +00:00
if err != nil {
return nil , err
}
return out , nil
}
2024-10-31 14:40:10 +00:00
func ( c * notifyServiceClient ) NotifyAllUser ( ctx context . Context , in * NotifyInfoPayload , opts ... grpc . CallOption ) ( * NotifyResponse , error ) {
2024-10-31 13:26:25 +00:00
cOpts := append ( [ ] grpc . CallOption { grpc . StaticMethod ( ) } , opts ... )
2024-10-23 16:13:16 +00:00
out := new ( NotifyResponse )
2024-10-31 13:26:25 +00:00
err := c . cc . Invoke ( ctx , NotifyService_NotifyAllUser_FullMethodName , in , out , cOpts ... )
2024-10-23 16:13:16 +00:00
if err != nil {
return nil , err
}
return out , nil
}
2024-10-31 13:07:53 +00:00
// NotifyServiceServer is the server API for NotifyService service.
// All implementations must embed UnimplementedNotifyServiceServer
2024-10-31 13:26:25 +00:00
// for forward compatibility.
2024-10-31 13:07:53 +00:00
type NotifyServiceServer interface {
2024-10-23 16:13:16 +00:00
NotifyUser ( context . Context , * NotifyUserRequest ) ( * NotifyResponse , error )
NotifyUserBatch ( context . Context , * NotifyUserBatchRequest ) ( * NotifyResponse , error )
2024-10-31 14:40:10 +00:00
NotifyAllUser ( context . Context , * NotifyInfoPayload ) ( * NotifyResponse , error )
2024-10-31 13:07:53 +00:00
mustEmbedUnimplementedNotifyServiceServer ( )
2024-10-23 16:13:16 +00:00
}
2024-10-31 13:26:25 +00:00
// UnimplementedNotifyServiceServer 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 UnimplementedNotifyServiceServer struct { }
2024-10-23 16:13:16 +00:00
2024-10-31 13:07:53 +00:00
func ( UnimplementedNotifyServiceServer ) NotifyUser ( context . Context , * NotifyUserRequest ) ( * NotifyResponse , error ) {
2024-10-23 16:13:16 +00:00
return nil , status . Errorf ( codes . Unimplemented , "method NotifyUser not implemented" )
}
2024-10-31 13:07:53 +00:00
func ( UnimplementedNotifyServiceServer ) NotifyUserBatch ( context . Context , * NotifyUserBatchRequest ) ( * NotifyResponse , error ) {
2024-10-23 16:13:16 +00:00
return nil , status . Errorf ( codes . Unimplemented , "method NotifyUserBatch not implemented" )
}
2024-10-31 14:40:10 +00:00
func ( UnimplementedNotifyServiceServer ) NotifyAllUser ( context . Context , * NotifyInfoPayload ) ( * NotifyResponse , error ) {
2024-10-23 16:13:16 +00:00
return nil , status . Errorf ( codes . Unimplemented , "method NotifyAllUser not implemented" )
}
2024-10-31 13:07:53 +00:00
func ( UnimplementedNotifyServiceServer ) mustEmbedUnimplementedNotifyServiceServer ( ) { }
2024-10-31 13:26:25 +00:00
func ( UnimplementedNotifyServiceServer ) testEmbeddedByValue ( ) { }
2024-10-23 16:13:16 +00:00
2024-10-31 13:07:53 +00:00
// UnsafeNotifyServiceServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to NotifyServiceServer will
2024-10-23 16:13:16 +00:00
// result in compilation errors.
2024-10-31 13:07:53 +00:00
type UnsafeNotifyServiceServer interface {
mustEmbedUnimplementedNotifyServiceServer ( )
2024-10-23 16:13:16 +00:00
}
2024-10-31 13:07:53 +00:00
func RegisterNotifyServiceServer ( s grpc . ServiceRegistrar , srv NotifyServiceServer ) {
2024-10-31 13:26:25 +00:00
// If the following call pancis, it indicates UnimplementedNotifyServiceServer 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 ( )
}
2024-10-31 13:07:53 +00:00
s . RegisterService ( & NotifyService_ServiceDesc , srv )
2024-10-23 16:13:16 +00:00
}
2024-10-31 13:07:53 +00:00
func _NotifyService_NotifyUser_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
2024-10-23 16:13:16 +00:00
in := new ( NotifyUserRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
2024-10-31 13:07:53 +00:00
return srv . ( NotifyServiceServer ) . NotifyUser ( ctx , in )
2024-10-23 16:13:16 +00:00
}
info := & grpc . UnaryServerInfo {
Server : srv ,
2024-10-31 13:26:25 +00:00
FullMethod : NotifyService_NotifyUser_FullMethodName ,
2024-10-23 16:13:16 +00:00
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
2024-10-31 13:07:53 +00:00
return srv . ( NotifyServiceServer ) . NotifyUser ( ctx , req . ( * NotifyUserRequest ) )
2024-10-23 16:13:16 +00:00
}
return interceptor ( ctx , in , info , handler )
}
2024-10-31 13:07:53 +00:00
func _NotifyService_NotifyUserBatch_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
2024-10-23 16:13:16 +00:00
in := new ( NotifyUserBatchRequest )
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
2024-10-31 13:07:53 +00:00
return srv . ( NotifyServiceServer ) . NotifyUserBatch ( ctx , in )
2024-10-23 16:13:16 +00:00
}
info := & grpc . UnaryServerInfo {
Server : srv ,
2024-10-31 13:26:25 +00:00
FullMethod : NotifyService_NotifyUserBatch_FullMethodName ,
2024-10-23 16:13:16 +00:00
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
2024-10-31 13:07:53 +00:00
return srv . ( NotifyServiceServer ) . NotifyUserBatch ( ctx , req . ( * NotifyUserBatchRequest ) )
2024-10-23 16:13:16 +00:00
}
return interceptor ( ctx , in , info , handler )
}
2024-10-31 13:07:53 +00:00
func _NotifyService_NotifyAllUser_Handler ( srv interface { } , ctx context . Context , dec func ( interface { } ) error , interceptor grpc . UnaryServerInterceptor ) ( interface { } , error ) {
2024-10-31 14:40:10 +00:00
in := new ( NotifyInfoPayload )
2024-10-23 16:13:16 +00:00
if err := dec ( in ) ; err != nil {
return nil , err
}
if interceptor == nil {
2024-10-31 13:07:53 +00:00
return srv . ( NotifyServiceServer ) . NotifyAllUser ( ctx , in )
2024-10-23 16:13:16 +00:00
}
info := & grpc . UnaryServerInfo {
Server : srv ,
2024-10-31 13:26:25 +00:00
FullMethod : NotifyService_NotifyAllUser_FullMethodName ,
2024-10-23 16:13:16 +00:00
}
handler := func ( ctx context . Context , req interface { } ) ( interface { } , error ) {
2024-10-31 14:40:10 +00:00
return srv . ( NotifyServiceServer ) . NotifyAllUser ( ctx , req . ( * NotifyInfoPayload ) )
2024-10-23 16:13:16 +00:00
}
return interceptor ( ctx , in , info , handler )
}
2024-10-31 13:07:53 +00:00
// NotifyService_ServiceDesc is the grpc.ServiceDesc for NotifyService service.
2024-10-23 16:13:16 +00:00
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
2024-10-31 13:07:53 +00:00
var NotifyService_ServiceDesc = grpc . ServiceDesc {
ServiceName : "proto.NotifyService" ,
HandlerType : ( * NotifyServiceServer ) ( nil ) ,
2024-10-23 16:13:16 +00:00
Methods : [ ] grpc . MethodDesc {
{
MethodName : "NotifyUser" ,
2024-10-31 13:07:53 +00:00
Handler : _NotifyService_NotifyUser_Handler ,
2024-10-23 16:13:16 +00:00
} ,
{
MethodName : "NotifyUserBatch" ,
2024-10-31 13:07:53 +00:00
Handler : _NotifyService_NotifyUserBatch_Handler ,
2024-10-23 16:13:16 +00:00
} ,
{
MethodName : "NotifyAllUser" ,
2024-10-31 13:07:53 +00:00
Handler : _NotifyService_NotifyAllUser_Handler ,
2024-10-23 16:13:16 +00:00
} ,
} ,
Streams : [ ] grpc . StreamDesc { } ,
Metadata : "notify.proto" ,
}