notificator

package
v0.9.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 22, 2024 License: Apache-2.0 Imports: 46 Imported by: 0

Documentation

Index

Constants

View Source
const (
	NotificatorService_GetNotifications_FullMethodName  = "/services.notificator.NotificatorService/GetNotifications"
	NotificatorService_MarkNotifications_FullMethodName = "/services.notificator.NotificatorService/MarkNotifications"
	NotificatorService_Stream_FullMethodName            = "/services.notificator.NotificatorService/Stream"
)

Variables

View Source
var (
	ErrFailedRequest = common.I18nErr(codes.InvalidArgument, &common.TranslateItem{Key: "errors.NotificatorService.ErrFailedRequest"}, nil)
	ErrFailedStream  = common.I18nErr(codes.InvalidArgument, &common.TranslateItem{Key: "errors.NotificatorService.ErrFailedStream"}, nil)
)
View Source
var File_services_notificator_notificator_proto protoreflect.FileDescriptor
View Source
var NotificatorService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "services.notificator.NotificatorService",
	HandlerType: (*NotificatorServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetNotifications",
			Handler:    _NotificatorService_GetNotifications_Handler,
		},
		{
			MethodName: "MarkNotifications",
			Handler:    _NotificatorService_MarkNotifications_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "Stream",
			Handler:       _NotificatorService_Stream_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "services/notificator/notificator.proto",
}

NotificatorService_ServiceDesc is the grpc.ServiceDesc for NotificatorService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var PermsRemap = map[string]string{

	"NotificatorService/GetNotifications":  "Any",
	"NotificatorService/MarkNotifications": "Any",
	"NotificatorService/Stream":            "Any",
}

Functions

func RegisterNotificatorServiceServer

func RegisterNotificatorServiceServer(s grpc.ServiceRegistrar, srv NotificatorServiceServer)

Types

type GetNotificationsRequest

type GetNotificationsRequest struct {
	Pagination  *database.PaginationRequest          `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	IncludeRead *bool                                `protobuf:"varint,2,opt,name=include_read,json=includeRead,proto3,oneof" json:"include_read,omitempty"`
	Categories  []notifications.NotificationCategory `` /* 131-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GetNotificationsRequest) Descriptor deprecated

func (*GetNotificationsRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetNotificationsRequest.ProtoReflect.Descriptor instead.

func (*GetNotificationsRequest) GetCategories

func (*GetNotificationsRequest) GetIncludeRead

func (x *GetNotificationsRequest) GetIncludeRead() bool

func (*GetNotificationsRequest) GetPagination

func (*GetNotificationsRequest) ProtoMessage

func (*GetNotificationsRequest) ProtoMessage()

func (*GetNotificationsRequest) ProtoReflect

func (x *GetNotificationsRequest) ProtoReflect() protoreflect.Message

func (*GetNotificationsRequest) Reset

func (x *GetNotificationsRequest) Reset()

func (*GetNotificationsRequest) Sanitize added in v0.9.4

func (m *GetNotificationsRequest) Sanitize() error

func (*GetNotificationsRequest) String

func (x *GetNotificationsRequest) String() string

func (*GetNotificationsRequest) Validate

func (m *GetNotificationsRequest) Validate() error

Validate checks the field values on GetNotificationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetNotificationsRequest) ValidateAll

func (m *GetNotificationsRequest) ValidateAll() error

ValidateAll checks the field values on GetNotificationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetNotificationsRequestMultiError, or nil if none found.

type GetNotificationsRequestMultiError

type GetNotificationsRequestMultiError []error

GetNotificationsRequestMultiError is an error wrapping multiple validation errors returned by GetNotificationsRequest.ValidateAll() if the designated constraints aren't met.

func (GetNotificationsRequestMultiError) AllErrors

func (m GetNotificationsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetNotificationsRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetNotificationsRequestValidationError

type GetNotificationsRequestValidationError struct {
	// contains filtered or unexported fields
}

GetNotificationsRequestValidationError is the validation error returned by GetNotificationsRequest.Validate if the designated constraints aren't met.

func (GetNotificationsRequestValidationError) Cause

Cause function returns cause value.

func (GetNotificationsRequestValidationError) Error

Error satisfies the builtin error interface

func (GetNotificationsRequestValidationError) ErrorName

ErrorName returns error name.

func (GetNotificationsRequestValidationError) Field

Field function returns field value.

func (GetNotificationsRequestValidationError) Key

Key function returns key value.

func (GetNotificationsRequestValidationError) Reason

Reason function returns reason value.

type GetNotificationsResponse

type GetNotificationsResponse struct {
	Pagination    *database.PaginationResponse  `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
	Notifications []*notifications.Notification `protobuf:"bytes,2,rep,name=notifications,proto3" json:"notifications,omitempty"`
	// contains filtered or unexported fields
}

func (*GetNotificationsResponse) Descriptor deprecated

func (*GetNotificationsResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetNotificationsResponse.ProtoReflect.Descriptor instead.

func (*GetNotificationsResponse) GetNotifications

func (x *GetNotificationsResponse) GetNotifications() []*notifications.Notification

func (*GetNotificationsResponse) GetPagination

func (*GetNotificationsResponse) ProtoMessage

func (*GetNotificationsResponse) ProtoMessage()

func (*GetNotificationsResponse) ProtoReflect

func (x *GetNotificationsResponse) ProtoReflect() protoreflect.Message

func (*GetNotificationsResponse) Reset

func (x *GetNotificationsResponse) Reset()

func (*GetNotificationsResponse) Sanitize added in v0.9.4

func (m *GetNotificationsResponse) Sanitize() error

func (*GetNotificationsResponse) String

func (x *GetNotificationsResponse) String() string

func (*GetNotificationsResponse) Validate

func (m *GetNotificationsResponse) Validate() error

Validate checks the field values on GetNotificationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetNotificationsResponse) ValidateAll

func (m *GetNotificationsResponse) ValidateAll() error

ValidateAll checks the field values on GetNotificationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetNotificationsResponseMultiError, or nil if none found.

type GetNotificationsResponseMultiError

type GetNotificationsResponseMultiError []error

GetNotificationsResponseMultiError is an error wrapping multiple validation errors returned by GetNotificationsResponse.ValidateAll() if the designated constraints aren't met.

func (GetNotificationsResponseMultiError) AllErrors

func (m GetNotificationsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetNotificationsResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetNotificationsResponseValidationError

type GetNotificationsResponseValidationError struct {
	// contains filtered or unexported fields
}

GetNotificationsResponseValidationError is the validation error returned by GetNotificationsResponse.Validate if the designated constraints aren't met.

func (GetNotificationsResponseValidationError) Cause

Cause function returns cause value.

func (GetNotificationsResponseValidationError) Error

Error satisfies the builtin error interface

func (GetNotificationsResponseValidationError) ErrorName

ErrorName returns error name.

func (GetNotificationsResponseValidationError) Field

Field function returns field value.

func (GetNotificationsResponseValidationError) Key

Key function returns key value.

func (GetNotificationsResponseValidationError) Reason

Reason function returns reason value.

type MarkNotificationsRequest

type MarkNotificationsRequest struct {
	Ids []uint64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
	All *bool    `protobuf:"varint,2,opt,name=all,proto3,oneof" json:"all,omitempty"`
	// contains filtered or unexported fields
}

func (*MarkNotificationsRequest) Descriptor deprecated

func (*MarkNotificationsRequest) Descriptor() ([]byte, []int)

Deprecated: Use MarkNotificationsRequest.ProtoReflect.Descriptor instead.

func (*MarkNotificationsRequest) GetAll

func (x *MarkNotificationsRequest) GetAll() bool

func (*MarkNotificationsRequest) GetIds

func (x *MarkNotificationsRequest) GetIds() []uint64

func (*MarkNotificationsRequest) ProtoMessage

func (*MarkNotificationsRequest) ProtoMessage()

func (*MarkNotificationsRequest) ProtoReflect

func (x *MarkNotificationsRequest) ProtoReflect() protoreflect.Message

func (*MarkNotificationsRequest) Reset

func (x *MarkNotificationsRequest) Reset()

func (*MarkNotificationsRequest) Sanitize added in v0.9.4

func (m *MarkNotificationsRequest) Sanitize() error

func (*MarkNotificationsRequest) String

func (x *MarkNotificationsRequest) String() string

func (*MarkNotificationsRequest) Validate

func (m *MarkNotificationsRequest) Validate() error

Validate checks the field values on MarkNotificationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MarkNotificationsRequest) ValidateAll

func (m *MarkNotificationsRequest) ValidateAll() error

ValidateAll checks the field values on MarkNotificationsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MarkNotificationsRequestMultiError, or nil if none found.

type MarkNotificationsRequestMultiError

type MarkNotificationsRequestMultiError []error

MarkNotificationsRequestMultiError is an error wrapping multiple validation errors returned by MarkNotificationsRequest.ValidateAll() if the designated constraints aren't met.

func (MarkNotificationsRequestMultiError) AllErrors

func (m MarkNotificationsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (MarkNotificationsRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type MarkNotificationsRequestValidationError

type MarkNotificationsRequestValidationError struct {
	// contains filtered or unexported fields
}

MarkNotificationsRequestValidationError is the validation error returned by MarkNotificationsRequest.Validate if the designated constraints aren't met.

func (MarkNotificationsRequestValidationError) Cause

Cause function returns cause value.

func (MarkNotificationsRequestValidationError) Error

Error satisfies the builtin error interface

func (MarkNotificationsRequestValidationError) ErrorName

ErrorName returns error name.

func (MarkNotificationsRequestValidationError) Field

Field function returns field value.

func (MarkNotificationsRequestValidationError) Key

Key function returns key value.

func (MarkNotificationsRequestValidationError) Reason

Reason function returns reason value.

type MarkNotificationsResponse

type MarkNotificationsResponse struct {
	Updated uint64 `protobuf:"varint,1,opt,name=updated,proto3" json:"updated,omitempty"`
	// contains filtered or unexported fields
}

func (*MarkNotificationsResponse) Descriptor deprecated

func (*MarkNotificationsResponse) Descriptor() ([]byte, []int)

Deprecated: Use MarkNotificationsResponse.ProtoReflect.Descriptor instead.

func (*MarkNotificationsResponse) GetUpdated

func (x *MarkNotificationsResponse) GetUpdated() uint64

func (*MarkNotificationsResponse) ProtoMessage

func (*MarkNotificationsResponse) ProtoMessage()

func (*MarkNotificationsResponse) ProtoReflect

func (*MarkNotificationsResponse) Reset

func (x *MarkNotificationsResponse) Reset()

func (*MarkNotificationsResponse) Sanitize added in v0.9.4

func (m *MarkNotificationsResponse) Sanitize() error

func (*MarkNotificationsResponse) String

func (x *MarkNotificationsResponse) String() string

func (*MarkNotificationsResponse) Validate

func (m *MarkNotificationsResponse) Validate() error

Validate checks the field values on MarkNotificationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MarkNotificationsResponse) ValidateAll

func (m *MarkNotificationsResponse) ValidateAll() error

ValidateAll checks the field values on MarkNotificationsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MarkNotificationsResponseMultiError, or nil if none found.

type MarkNotificationsResponseMultiError

type MarkNotificationsResponseMultiError []error

MarkNotificationsResponseMultiError is an error wrapping multiple validation errors returned by MarkNotificationsResponse.ValidateAll() if the designated constraints aren't met.

func (MarkNotificationsResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (MarkNotificationsResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type MarkNotificationsResponseValidationError

type MarkNotificationsResponseValidationError struct {
	// contains filtered or unexported fields
}

MarkNotificationsResponseValidationError is the validation error returned by MarkNotificationsResponse.Validate if the designated constraints aren't met.

func (MarkNotificationsResponseValidationError) Cause

Cause function returns cause value.

func (MarkNotificationsResponseValidationError) Error

Error satisfies the builtin error interface

func (MarkNotificationsResponseValidationError) ErrorName

ErrorName returns error name.

func (MarkNotificationsResponseValidationError) Field

Field function returns field value.

func (MarkNotificationsResponseValidationError) Key

Key function returns key value.

func (MarkNotificationsResponseValidationError) Reason

Reason function returns reason value.

type NotificatorServiceClient

type NotificatorServiceClient interface {
	// @perm: Name=Any
	GetNotifications(ctx context.Context, in *GetNotificationsRequest, opts ...grpc.CallOption) (*GetNotificationsResponse, error)
	// @perm: Name=Any
	MarkNotifications(ctx context.Context, in *MarkNotificationsRequest, opts ...grpc.CallOption) (*MarkNotificationsResponse, error)
	// @perm: Name=Any
	Stream(ctx context.Context, in *StreamRequest, opts ...grpc.CallOption) (NotificatorService_StreamClient, error)
}

NotificatorServiceClient is the client API for NotificatorService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkgo.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type NotificatorServiceServer

type NotificatorServiceServer interface {
	// @perm: Name=Any
	GetNotifications(context.Context, *GetNotificationsRequest) (*GetNotificationsResponse, error)
	// @perm: Name=Any
	MarkNotifications(context.Context, *MarkNotificationsRequest) (*MarkNotificationsResponse, error)
	// @perm: Name=Any
	Stream(*StreamRequest, NotificatorService_StreamServer) error
	// contains filtered or unexported methods
}

NotificatorServiceServer is the server API for NotificatorService service. All implementations must embed UnimplementedNotificatorServiceServer for forward compatibility

type NotificatorService_StreamClient

type NotificatorService_StreamClient interface {
	Recv() (*StreamResponse, error)
	grpc.ClientStream
}

type NotificatorService_StreamServer

type NotificatorService_StreamServer interface {
	Send(*StreamResponse) error
	grpc.ServerStream
}

type Params

type Params struct {
	fx.In

	LC fx.Lifecycle

	Logger    *zap.Logger
	DB        *sql.DB
	Perms     perms.Permissions
	TM        *auth.TokenMgr
	UI        userinfo.UserInfoRetriever
	JS        *events.JSWrapper
	Enricher  *mstlystcdata.Enricher
	AppConfig appconfig.IConfig
}

type Server

type Server struct {
	NotificatorServiceServer
	// contains filtered or unexported fields
}

func NewServer

func NewServer(p Params) *Server

func (*Server) GetNotifications

func (s *Server) GetNotifications(ctx context.Context, req *GetNotificationsRequest) (*GetNotificationsResponse, error)

func (*Server) GetPermsRemap

func (s *Server) GetPermsRemap() map[string]string

func (*Server) MarkNotifications

func (s *Server) MarkNotifications(ctx context.Context, req *MarkNotificationsRequest) (*MarkNotificationsResponse, error)

func (*Server) RegisterServer

func (s *Server) RegisterServer(srv *grpc.Server)

func (*Server) Stream

type StreamRequest

type StreamRequest struct {
	// contains filtered or unexported fields
}

func (*StreamRequest) Descriptor deprecated

func (*StreamRequest) Descriptor() ([]byte, []int)

Deprecated: Use StreamRequest.ProtoReflect.Descriptor instead.

func (*StreamRequest) ProtoMessage

func (*StreamRequest) ProtoMessage()

func (*StreamRequest) ProtoReflect

func (x *StreamRequest) ProtoReflect() protoreflect.Message

func (*StreamRequest) Reset

func (x *StreamRequest) Reset()

func (*StreamRequest) Sanitize added in v0.9.4

func (m *StreamRequest) Sanitize() error

func (*StreamRequest) String

func (x *StreamRequest) String() string

func (*StreamRequest) Validate

func (m *StreamRequest) Validate() error

Validate checks the field values on StreamRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StreamRequest) ValidateAll

func (m *StreamRequest) ValidateAll() error

ValidateAll checks the field values on StreamRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StreamRequestMultiError, or nil if none found.

type StreamRequestMultiError

type StreamRequestMultiError []error

StreamRequestMultiError is an error wrapping multiple validation errors returned by StreamRequest.ValidateAll() if the designated constraints aren't met.

func (StreamRequestMultiError) AllErrors

func (m StreamRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StreamRequestMultiError) Error

func (m StreamRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type StreamRequestValidationError

type StreamRequestValidationError struct {
	// contains filtered or unexported fields
}

StreamRequestValidationError is the validation error returned by StreamRequest.Validate if the designated constraints aren't met.

func (StreamRequestValidationError) Cause

Cause function returns cause value.

func (StreamRequestValidationError) Error

Error satisfies the builtin error interface

func (StreamRequestValidationError) ErrorName

func (e StreamRequestValidationError) ErrorName() string

ErrorName returns error name.

func (StreamRequestValidationError) Field

Field function returns field value.

func (StreamRequestValidationError) Key

Key function returns key value.

func (StreamRequestValidationError) Reason

Reason function returns reason value.

type StreamResponse

type StreamResponse struct {
	NotificationCount int32 `protobuf:"varint,1,opt,name=notification_count,json=notificationCount,proto3" json:"notification_count,omitempty"`
	Restart           *bool `protobuf:"varint,2,opt,name=restart,proto3,oneof" json:"restart,omitempty"`
	// Types that are assignable to Data:
	//
	//	*StreamResponse_UserEvent
	//	*StreamResponse_JobEvent
	//	*StreamResponse_JobGradeEvent
	//	*StreamResponse_SystemEvent
	//	*StreamResponse_MailerEvent
	Data isStreamResponse_Data `protobuf_oneof:"data"`
	// contains filtered or unexported fields
}

func (*StreamResponse) Descriptor deprecated

func (*StreamResponse) Descriptor() ([]byte, []int)

Deprecated: Use StreamResponse.ProtoReflect.Descriptor instead.

func (*StreamResponse) GetData

func (m *StreamResponse) GetData() isStreamResponse_Data

func (*StreamResponse) GetJobEvent

func (x *StreamResponse) GetJobEvent() *notifications.JobEvent

func (*StreamResponse) GetJobGradeEvent added in v0.9.4

func (x *StreamResponse) GetJobGradeEvent() *notifications.JobGradeEvent

func (*StreamResponse) GetMailerEvent added in v0.9.4

func (x *StreamResponse) GetMailerEvent() *mailer.MailerEvent

func (*StreamResponse) GetNotificationCount

func (x *StreamResponse) GetNotificationCount() int32

func (*StreamResponse) GetRestart

func (x *StreamResponse) GetRestart() bool

func (*StreamResponse) GetSystemEvent

func (x *StreamResponse) GetSystemEvent() *notifications.SystemEvent

func (*StreamResponse) GetUserEvent

func (x *StreamResponse) GetUserEvent() *notifications.UserEvent

func (*StreamResponse) ProtoMessage

func (*StreamResponse) ProtoMessage()

func (*StreamResponse) ProtoReflect

func (x *StreamResponse) ProtoReflect() protoreflect.Message

func (*StreamResponse) Reset

func (x *StreamResponse) Reset()

func (*StreamResponse) Sanitize added in v0.9.4

func (m *StreamResponse) Sanitize() error

func (*StreamResponse) String

func (x *StreamResponse) String() string

func (*StreamResponse) Validate

func (m *StreamResponse) Validate() error

Validate checks the field values on StreamResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StreamResponse) ValidateAll

func (m *StreamResponse) ValidateAll() error

ValidateAll checks the field values on StreamResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StreamResponseMultiError, or nil if none found.

type StreamResponseMultiError

type StreamResponseMultiError []error

StreamResponseMultiError is an error wrapping multiple validation errors returned by StreamResponse.ValidateAll() if the designated constraints aren't met.

func (StreamResponseMultiError) AllErrors

func (m StreamResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StreamResponseMultiError) Error

func (m StreamResponseMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type StreamResponseValidationError

type StreamResponseValidationError struct {
	// contains filtered or unexported fields
}

StreamResponseValidationError is the validation error returned by StreamResponse.Validate if the designated constraints aren't met.

func (StreamResponseValidationError) Cause

Cause function returns cause value.

func (StreamResponseValidationError) Error

Error satisfies the builtin error interface

func (StreamResponseValidationError) ErrorName

func (e StreamResponseValidationError) ErrorName() string

ErrorName returns error name.

func (StreamResponseValidationError) Field

Field function returns field value.

func (StreamResponseValidationError) Key

Key function returns key value.

func (StreamResponseValidationError) Reason

Reason function returns reason value.

type StreamResponse_JobEvent

type StreamResponse_JobEvent struct {
	JobEvent *notifications.JobEvent `protobuf:"bytes,4,opt,name=job_event,json=jobEvent,proto3,oneof"`
}

type StreamResponse_JobGradeEvent added in v0.9.4

type StreamResponse_JobGradeEvent struct {
	JobGradeEvent *notifications.JobGradeEvent `protobuf:"bytes,7,opt,name=job_grade_event,json=jobGradeEvent,proto3,oneof"`
}

type StreamResponse_MailerEvent added in v0.9.4

type StreamResponse_MailerEvent struct {
	MailerEvent *mailer.MailerEvent `protobuf:"bytes,6,opt,name=mailer_event,json=mailerEvent,proto3,oneof"`
}

type StreamResponse_SystemEvent

type StreamResponse_SystemEvent struct {
	SystemEvent *notifications.SystemEvent `protobuf:"bytes,5,opt,name=system_event,json=systemEvent,proto3,oneof"`
}

type StreamResponse_UserEvent

type StreamResponse_UserEvent struct {
	UserEvent *notifications.UserEvent `protobuf:"bytes,3,opt,name=user_event,json=userEvent,proto3,oneof"`
}

type UnimplementedNotificatorServiceServer

type UnimplementedNotificatorServiceServer struct {
}

UnimplementedNotificatorServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedNotificatorServiceServer) GetNotifications

func (UnimplementedNotificatorServiceServer) MarkNotifications

func (UnimplementedNotificatorServiceServer) Stream

type UnsafeNotificatorServiceServer

type UnsafeNotificatorServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeNotificatorServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to NotificatorServiceServer will result in compilation errors.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL
JackTT - Gopher 🇻🇳