mirror of
https://github.com/aljazceru/lspd.git
synced 2025-12-18 14:24:21 +01:00
142 lines
5.7 KiB
Go
142 lines
5.7 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.2.0
|
|
// - protoc v4.23.4
|
|
// source: notifications.proto
|
|
|
|
package notifications
|
|
|
|
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
|
|
|
|
// NotificationsClient is the client API for Notifications 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 NotificationsClient interface {
|
|
SubscribeNotifications(ctx context.Context, in *EncryptedNotificationRequest, opts ...grpc.CallOption) (*SubscribeNotificationsReply, error)
|
|
UnsubscribeNotifications(ctx context.Context, in *EncryptedNotificationRequest, opts ...grpc.CallOption) (*UnsubscribeNotificationsReply, error)
|
|
}
|
|
|
|
type notificationsClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewNotificationsClient(cc grpc.ClientConnInterface) NotificationsClient {
|
|
return ¬ificationsClient{cc}
|
|
}
|
|
|
|
func (c *notificationsClient) SubscribeNotifications(ctx context.Context, in *EncryptedNotificationRequest, opts ...grpc.CallOption) (*SubscribeNotificationsReply, error) {
|
|
out := new(SubscribeNotificationsReply)
|
|
err := c.cc.Invoke(ctx, "/notifications.Notifications/SubscribeNotifications", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *notificationsClient) UnsubscribeNotifications(ctx context.Context, in *EncryptedNotificationRequest, opts ...grpc.CallOption) (*UnsubscribeNotificationsReply, error) {
|
|
out := new(UnsubscribeNotificationsReply)
|
|
err := c.cc.Invoke(ctx, "/notifications.Notifications/UnsubscribeNotifications", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// NotificationsServer is the server API for Notifications service.
|
|
// All implementations must embed UnimplementedNotificationsServer
|
|
// for forward compatibility
|
|
type NotificationsServer interface {
|
|
SubscribeNotifications(context.Context, *EncryptedNotificationRequest) (*SubscribeNotificationsReply, error)
|
|
UnsubscribeNotifications(context.Context, *EncryptedNotificationRequest) (*UnsubscribeNotificationsReply, error)
|
|
mustEmbedUnimplementedNotificationsServer()
|
|
}
|
|
|
|
// UnimplementedNotificationsServer must be embedded to have forward compatible implementations.
|
|
type UnimplementedNotificationsServer struct {
|
|
}
|
|
|
|
func (UnimplementedNotificationsServer) SubscribeNotifications(context.Context, *EncryptedNotificationRequest) (*SubscribeNotificationsReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SubscribeNotifications not implemented")
|
|
}
|
|
func (UnimplementedNotificationsServer) UnsubscribeNotifications(context.Context, *EncryptedNotificationRequest) (*UnsubscribeNotificationsReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method UnsubscribeNotifications not implemented")
|
|
}
|
|
func (UnimplementedNotificationsServer) mustEmbedUnimplementedNotificationsServer() {}
|
|
|
|
// UnsafeNotificationsServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to NotificationsServer will
|
|
// result in compilation errors.
|
|
type UnsafeNotificationsServer interface {
|
|
mustEmbedUnimplementedNotificationsServer()
|
|
}
|
|
|
|
func RegisterNotificationsServer(s grpc.ServiceRegistrar, srv NotificationsServer) {
|
|
s.RegisterService(&Notifications_ServiceDesc, srv)
|
|
}
|
|
|
|
func _Notifications_SubscribeNotifications_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(EncryptedNotificationRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(NotificationsServer).SubscribeNotifications(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/notifications.Notifications/SubscribeNotifications",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(NotificationsServer).SubscribeNotifications(ctx, req.(*EncryptedNotificationRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _Notifications_UnsubscribeNotifications_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(EncryptedNotificationRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(NotificationsServer).UnsubscribeNotifications(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/notifications.Notifications/UnsubscribeNotifications",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(NotificationsServer).UnsubscribeNotifications(ctx, req.(*EncryptedNotificationRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// Notifications_ServiceDesc is the grpc.ServiceDesc for Notifications service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var Notifications_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "notifications.Notifications",
|
|
HandlerType: (*NotificationsServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "SubscribeNotifications",
|
|
Handler: _Notifications_SubscribeNotifications_Handler,
|
|
},
|
|
{
|
|
MethodName: "UnsubscribeNotifications",
|
|
Handler: _Notifications_UnsubscribeNotifications_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "notifications.proto",
|
|
}
|