task_tracker_topics

package
v0.0.4 Latest Latest
Warning

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

Go to latest
Published: Sep 1, 2025 License: MIT Imports: 34 Imported by: 0

Documentation

Overview

Package task_tracker_topics is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var File_api_topics_models_proto protoreflect.FileDescriptor
View Source
var File_api_topics_services_proto protoreflect.FileDescriptor
View Source
var TopicService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "api.v1.task_tracker.topics.TopicService",
	HandlerType: (*TopicServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetTopics",
			Handler:    _TopicService_GetTopics_Handler,
		},
		{
			MethodName: "CreateTopics",
			Handler:    _TopicService_CreateTopics_Handler,
		},
		{
			MethodName: "UpdateTopics",
			Handler:    _TopicService_UpdateTopics_Handler,
		},
		{
			MethodName: "DeleteTopics",
			Handler:    _TopicService_DeleteTopics_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "api/topics/services.proto",
}

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

Functions

func RegisterTopicServiceHandler

func RegisterTopicServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterTopicServiceHandler registers the http handlers for service TopicService to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterTopicServiceHandlerClient

func RegisterTopicServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client TopicServiceClient) error

RegisterTopicServiceHandlerClient registers the http handlers for service TopicService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "TopicServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "TopicServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "TopicServiceClient" to call the correct interceptors. This client ignores the HTTP middlewares.

func RegisterTopicServiceHandlerFromEndpoint

func RegisterTopicServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterTopicServiceHandlerFromEndpoint is same as RegisterTopicServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterTopicServiceHandlerServer

func RegisterTopicServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server TopicServiceServer) error

RegisterTopicServiceHandlerServer registers the http handlers for service TopicService to "mux". UnaryRPC :call TopicServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterTopicServiceHandlerFromEndpoint instead. GRPC interceptors will not work for this type of registration. To use interceptors, you must use the "runtime.WithMiddlewares" option in the "runtime.NewServeMux" call.

func RegisterTopicServiceServer

func RegisterTopicServiceServer(s grpc.ServiceRegistrar, srv TopicServiceServer)

Types

type CreateTopicsRequest

type CreateTopicsRequest struct {
	TopicsToCreate []*CreateTopicsRequest_TopicPrototype `protobuf:"bytes,1,rep,name=topics_to_create,json=topicsToCreate,proto3" json:"topics_to_create,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTopicsRequest) CloneMessageVT

func (m *CreateTopicsRequest) CloneMessageVT() proto.Message

func (*CreateTopicsRequest) CloneVT

func (*CreateTopicsRequest) Descriptor deprecated

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

Deprecated: Use CreateTopicsRequest.ProtoReflect.Descriptor instead.

func (*CreateTopicsRequest) EqualMessageVT

func (this *CreateTopicsRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateTopicsRequest) EqualVT

func (this *CreateTopicsRequest) EqualVT(that *CreateTopicsRequest) bool

func (*CreateTopicsRequest) GetTopicsToCreate

func (x *CreateTopicsRequest) GetTopicsToCreate() []*CreateTopicsRequest_TopicPrototype

func (*CreateTopicsRequest) MarshalToSizedBufferVT

func (m *CreateTopicsRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*CreateTopicsRequest) MarshalToSizedBufferVTStrict

func (m *CreateTopicsRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*CreateTopicsRequest) MarshalToVT

func (m *CreateTopicsRequest) MarshalToVT(dAtA []byte) (int, error)

func (*CreateTopicsRequest) MarshalToVTStrict

func (m *CreateTopicsRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*CreateTopicsRequest) MarshalVT

func (m *CreateTopicsRequest) MarshalVT() (dAtA []byte, err error)

func (*CreateTopicsRequest) MarshalVTStrict

func (m *CreateTopicsRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*CreateTopicsRequest) ProtoMessage

func (*CreateTopicsRequest) ProtoMessage()

func (*CreateTopicsRequest) ProtoReflect

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

func (*CreateTopicsRequest) Reset

func (x *CreateTopicsRequest) Reset()

func (*CreateTopicsRequest) SizeVT

func (m *CreateTopicsRequest) SizeVT() (n int)

func (*CreateTopicsRequest) String

func (x *CreateTopicsRequest) String() string

func (*CreateTopicsRequest) UnmarshalVT

func (m *CreateTopicsRequest) UnmarshalVT(dAtA []byte) error

func (*CreateTopicsRequest) UnmarshalVTUnsafe

func (m *CreateTopicsRequest) UnmarshalVTUnsafe(dAtA []byte) error

func (*CreateTopicsRequest) Validate

func (m *CreateTopicsRequest) Validate() error

Validate checks the field values on CreateTopicsRequest 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 (*CreateTopicsRequest) ValidateAll

func (m *CreateTopicsRequest) ValidateAll() error

ValidateAll checks the field values on CreateTopicsRequest 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 CreateTopicsRequestMultiError, or nil if none found.

type CreateTopicsRequestMultiError

type CreateTopicsRequestMultiError []error

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

func (CreateTopicsRequestMultiError) AllErrors

func (m CreateTopicsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateTopicsRequestMultiError) Error

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

type CreateTopicsRequestValidationError

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

CreateTopicsRequestValidationError is the validation error returned by CreateTopicsRequest.Validate if the designated constraints aren't met.

func (CreateTopicsRequestValidationError) Cause

Cause function returns cause value.

func (CreateTopicsRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateTopicsRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateTopicsRequestValidationError) Field

Field function returns field value.

func (CreateTopicsRequestValidationError) Key

Key function returns key value.

func (CreateTopicsRequestValidationError) Reason

Reason function returns reason value.

type CreateTopicsRequest_TopicPrototype

type CreateTopicsRequest_TopicPrototype struct {
	Name    string  `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	TaskIds []int64 `protobuf:"varint,2,rep,packed,name=task_ids,json=taskIds,proto3" json:"task_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTopicsRequest_TopicPrototype) CloneMessageVT

func (m *CreateTopicsRequest_TopicPrototype) CloneMessageVT() proto.Message

func (*CreateTopicsRequest_TopicPrototype) CloneVT

func (*CreateTopicsRequest_TopicPrototype) Descriptor deprecated

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

Deprecated: Use CreateTopicsRequest_TopicPrototype.ProtoReflect.Descriptor instead.

func (*CreateTopicsRequest_TopicPrototype) EqualMessageVT

func (this *CreateTopicsRequest_TopicPrototype) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateTopicsRequest_TopicPrototype) EqualVT

func (*CreateTopicsRequest_TopicPrototype) GetName

func (*CreateTopicsRequest_TopicPrototype) GetTaskIds

func (x *CreateTopicsRequest_TopicPrototype) GetTaskIds() []int64

func (*CreateTopicsRequest_TopicPrototype) MarshalToSizedBufferVT

func (m *CreateTopicsRequest_TopicPrototype) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*CreateTopicsRequest_TopicPrototype) MarshalToSizedBufferVTStrict

func (m *CreateTopicsRequest_TopicPrototype) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*CreateTopicsRequest_TopicPrototype) MarshalToVT

func (m *CreateTopicsRequest_TopicPrototype) MarshalToVT(dAtA []byte) (int, error)

func (*CreateTopicsRequest_TopicPrototype) MarshalToVTStrict

func (m *CreateTopicsRequest_TopicPrototype) MarshalToVTStrict(dAtA []byte) (int, error)

func (*CreateTopicsRequest_TopicPrototype) MarshalVT

func (m *CreateTopicsRequest_TopicPrototype) MarshalVT() (dAtA []byte, err error)

func (*CreateTopicsRequest_TopicPrototype) MarshalVTStrict

func (m *CreateTopicsRequest_TopicPrototype) MarshalVTStrict() (dAtA []byte, err error)

func (*CreateTopicsRequest_TopicPrototype) ProtoMessage

func (*CreateTopicsRequest_TopicPrototype) ProtoMessage()

func (*CreateTopicsRequest_TopicPrototype) ProtoReflect

func (*CreateTopicsRequest_TopicPrototype) Reset

func (*CreateTopicsRequest_TopicPrototype) SizeVT

func (m *CreateTopicsRequest_TopicPrototype) SizeVT() (n int)

func (*CreateTopicsRequest_TopicPrototype) String

func (*CreateTopicsRequest_TopicPrototype) UnmarshalVT

func (m *CreateTopicsRequest_TopicPrototype) UnmarshalVT(dAtA []byte) error

func (*CreateTopicsRequest_TopicPrototype) UnmarshalVTUnsafe

func (m *CreateTopicsRequest_TopicPrototype) UnmarshalVTUnsafe(dAtA []byte) error

func (*CreateTopicsRequest_TopicPrototype) Validate

Validate checks the field values on CreateTopicsRequest_TopicPrototype 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 (*CreateTopicsRequest_TopicPrototype) ValidateAll

func (m *CreateTopicsRequest_TopicPrototype) ValidateAll() error

ValidateAll checks the field values on CreateTopicsRequest_TopicPrototype 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 CreateTopicsRequest_TopicPrototypeMultiError, or nil if none found.

type CreateTopicsRequest_TopicPrototypeMultiError

type CreateTopicsRequest_TopicPrototypeMultiError []error

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

func (CreateTopicsRequest_TopicPrototypeMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (CreateTopicsRequest_TopicPrototypeMultiError) Error

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

type CreateTopicsRequest_TopicPrototypeValidationError

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

CreateTopicsRequest_TopicPrototypeValidationError is the validation error returned by CreateTopicsRequest_TopicPrototype.Validate if the designated constraints aren't met.

func (CreateTopicsRequest_TopicPrototypeValidationError) Cause

Cause function returns cause value.

func (CreateTopicsRequest_TopicPrototypeValidationError) Error

Error satisfies the builtin error interface

func (CreateTopicsRequest_TopicPrototypeValidationError) ErrorName

ErrorName returns error name.

func (CreateTopicsRequest_TopicPrototypeValidationError) Field

Field function returns field value.

func (CreateTopicsRequest_TopicPrototypeValidationError) Key

Key function returns key value.

func (CreateTopicsRequest_TopicPrototypeValidationError) Reason

Reason function returns reason value.

type CreateTopicsResponse

type CreateTopicsResponse struct {
	Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTopicsResponse) CloneMessageVT

func (m *CreateTopicsResponse) CloneMessageVT() proto.Message

func (*CreateTopicsResponse) CloneVT

func (*CreateTopicsResponse) Descriptor deprecated

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

Deprecated: Use CreateTopicsResponse.ProtoReflect.Descriptor instead.

func (*CreateTopicsResponse) EqualMessageVT

func (this *CreateTopicsResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateTopicsResponse) EqualVT

func (this *CreateTopicsResponse) EqualVT(that *CreateTopicsResponse) bool

func (*CreateTopicsResponse) GetIds

func (x *CreateTopicsResponse) GetIds() []int64

func (*CreateTopicsResponse) MarshalToSizedBufferVT

func (m *CreateTopicsResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*CreateTopicsResponse) MarshalToSizedBufferVTStrict

func (m *CreateTopicsResponse) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*CreateTopicsResponse) MarshalToVT

func (m *CreateTopicsResponse) MarshalToVT(dAtA []byte) (int, error)

func (*CreateTopicsResponse) MarshalToVTStrict

func (m *CreateTopicsResponse) MarshalToVTStrict(dAtA []byte) (int, error)

func (*CreateTopicsResponse) MarshalVT

func (m *CreateTopicsResponse) MarshalVT() (dAtA []byte, err error)

func (*CreateTopicsResponse) MarshalVTStrict

func (m *CreateTopicsResponse) MarshalVTStrict() (dAtA []byte, err error)

func (*CreateTopicsResponse) ProtoMessage

func (*CreateTopicsResponse) ProtoMessage()

func (*CreateTopicsResponse) ProtoReflect

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

func (*CreateTopicsResponse) Reset

func (x *CreateTopicsResponse) Reset()

func (*CreateTopicsResponse) SizeVT

func (m *CreateTopicsResponse) SizeVT() (n int)

func (*CreateTopicsResponse) String

func (x *CreateTopicsResponse) String() string

func (*CreateTopicsResponse) UnmarshalVT

func (m *CreateTopicsResponse) UnmarshalVT(dAtA []byte) error

func (*CreateTopicsResponse) UnmarshalVTUnsafe

func (m *CreateTopicsResponse) UnmarshalVTUnsafe(dAtA []byte) error

func (*CreateTopicsResponse) Validate

func (m *CreateTopicsResponse) Validate() error

Validate checks the field values on CreateTopicsResponse 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 (*CreateTopicsResponse) ValidateAll

func (m *CreateTopicsResponse) ValidateAll() error

ValidateAll checks the field values on CreateTopicsResponse 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 CreateTopicsResponseMultiError, or nil if none found.

type CreateTopicsResponseMultiError

type CreateTopicsResponseMultiError []error

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

func (CreateTopicsResponseMultiError) AllErrors

func (m CreateTopicsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateTopicsResponseMultiError) Error

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

type CreateTopicsResponseValidationError

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

CreateTopicsResponseValidationError is the validation error returned by CreateTopicsResponse.Validate if the designated constraints aren't met.

func (CreateTopicsResponseValidationError) Cause

Cause function returns cause value.

func (CreateTopicsResponseValidationError) Error

Error satisfies the builtin error interface

func (CreateTopicsResponseValidationError) ErrorName

ErrorName returns error name.

func (CreateTopicsResponseValidationError) Field

Field function returns field value.

func (CreateTopicsResponseValidationError) Key

Key function returns key value.

func (CreateTopicsResponseValidationError) Reason

Reason function returns reason value.

type DeleteTopicsRequest

type DeleteTopicsRequest struct {
	Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteTopicsRequest) CloneMessageVT

func (m *DeleteTopicsRequest) CloneMessageVT() proto.Message

func (*DeleteTopicsRequest) CloneVT

func (*DeleteTopicsRequest) Descriptor deprecated

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

Deprecated: Use DeleteTopicsRequest.ProtoReflect.Descriptor instead.

func (*DeleteTopicsRequest) EqualMessageVT

func (this *DeleteTopicsRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*DeleteTopicsRequest) EqualVT

func (this *DeleteTopicsRequest) EqualVT(that *DeleteTopicsRequest) bool

func (*DeleteTopicsRequest) GetIds

func (x *DeleteTopicsRequest) GetIds() []int64

func (*DeleteTopicsRequest) MarshalToSizedBufferVT

func (m *DeleteTopicsRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DeleteTopicsRequest) MarshalToSizedBufferVTStrict

func (m *DeleteTopicsRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*DeleteTopicsRequest) MarshalToVT

func (m *DeleteTopicsRequest) MarshalToVT(dAtA []byte) (int, error)

func (*DeleteTopicsRequest) MarshalToVTStrict

func (m *DeleteTopicsRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*DeleteTopicsRequest) MarshalVT

func (m *DeleteTopicsRequest) MarshalVT() (dAtA []byte, err error)

func (*DeleteTopicsRequest) MarshalVTStrict

func (m *DeleteTopicsRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*DeleteTopicsRequest) ProtoMessage

func (*DeleteTopicsRequest) ProtoMessage()

func (*DeleteTopicsRequest) ProtoReflect

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

func (*DeleteTopicsRequest) Reset

func (x *DeleteTopicsRequest) Reset()

func (*DeleteTopicsRequest) SizeVT

func (m *DeleteTopicsRequest) SizeVT() (n int)

func (*DeleteTopicsRequest) String

func (x *DeleteTopicsRequest) String() string

func (*DeleteTopicsRequest) UnmarshalVT

func (m *DeleteTopicsRequest) UnmarshalVT(dAtA []byte) error

func (*DeleteTopicsRequest) UnmarshalVTUnsafe

func (m *DeleteTopicsRequest) UnmarshalVTUnsafe(dAtA []byte) error

func (*DeleteTopicsRequest) Validate

func (m *DeleteTopicsRequest) Validate() error

Validate checks the field values on DeleteTopicsRequest 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 (*DeleteTopicsRequest) ValidateAll

func (m *DeleteTopicsRequest) ValidateAll() error

ValidateAll checks the field values on DeleteTopicsRequest 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 DeleteTopicsRequestMultiError, or nil if none found.

type DeleteTopicsRequestMultiError

type DeleteTopicsRequestMultiError []error

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

func (DeleteTopicsRequestMultiError) AllErrors

func (m DeleteTopicsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteTopicsRequestMultiError) Error

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

type DeleteTopicsRequestValidationError

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

DeleteTopicsRequestValidationError is the validation error returned by DeleteTopicsRequest.Validate if the designated constraints aren't met.

func (DeleteTopicsRequestValidationError) Cause

Cause function returns cause value.

func (DeleteTopicsRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteTopicsRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteTopicsRequestValidationError) Field

Field function returns field value.

func (DeleteTopicsRequestValidationError) Key

Key function returns key value.

func (DeleteTopicsRequestValidationError) Reason

Reason function returns reason value.

type DeleteTopicsResponse

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

func (*DeleteTopicsResponse) CloneMessageVT

func (m *DeleteTopicsResponse) CloneMessageVT() proto.Message

func (*DeleteTopicsResponse) CloneVT

func (*DeleteTopicsResponse) Descriptor deprecated

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

Deprecated: Use DeleteTopicsResponse.ProtoReflect.Descriptor instead.

func (*DeleteTopicsResponse) EqualMessageVT

func (this *DeleteTopicsResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*DeleteTopicsResponse) EqualVT

func (this *DeleteTopicsResponse) EqualVT(that *DeleteTopicsResponse) bool

func (*DeleteTopicsResponse) MarshalToSizedBufferVT

func (m *DeleteTopicsResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DeleteTopicsResponse) MarshalToSizedBufferVTStrict

func (m *DeleteTopicsResponse) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*DeleteTopicsResponse) MarshalToVT

func (m *DeleteTopicsResponse) MarshalToVT(dAtA []byte) (int, error)

func (*DeleteTopicsResponse) MarshalToVTStrict

func (m *DeleteTopicsResponse) MarshalToVTStrict(dAtA []byte) (int, error)

func (*DeleteTopicsResponse) MarshalVT

func (m *DeleteTopicsResponse) MarshalVT() (dAtA []byte, err error)

func (*DeleteTopicsResponse) MarshalVTStrict

func (m *DeleteTopicsResponse) MarshalVTStrict() (dAtA []byte, err error)

func (*DeleteTopicsResponse) ProtoMessage

func (*DeleteTopicsResponse) ProtoMessage()

func (*DeleteTopicsResponse) ProtoReflect

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

func (*DeleteTopicsResponse) Reset

func (x *DeleteTopicsResponse) Reset()

func (*DeleteTopicsResponse) SizeVT

func (m *DeleteTopicsResponse) SizeVT() (n int)

func (*DeleteTopicsResponse) String

func (x *DeleteTopicsResponse) String() string

func (*DeleteTopicsResponse) UnmarshalVT

func (m *DeleteTopicsResponse) UnmarshalVT(dAtA []byte) error

func (*DeleteTopicsResponse) UnmarshalVTUnsafe

func (m *DeleteTopicsResponse) UnmarshalVTUnsafe(dAtA []byte) error

func (*DeleteTopicsResponse) Validate

func (m *DeleteTopicsResponse) Validate() error

Validate checks the field values on DeleteTopicsResponse 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 (*DeleteTopicsResponse) ValidateAll

func (m *DeleteTopicsResponse) ValidateAll() error

ValidateAll checks the field values on DeleteTopicsResponse 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 DeleteTopicsResponseMultiError, or nil if none found.

type DeleteTopicsResponseMultiError

type DeleteTopicsResponseMultiError []error

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

func (DeleteTopicsResponseMultiError) AllErrors

func (m DeleteTopicsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteTopicsResponseMultiError) Error

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

type DeleteTopicsResponseValidationError

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

DeleteTopicsResponseValidationError is the validation error returned by DeleteTopicsResponse.Validate if the designated constraints aren't met.

func (DeleteTopicsResponseValidationError) Cause

Cause function returns cause value.

func (DeleteTopicsResponseValidationError) Error

Error satisfies the builtin error interface

func (DeleteTopicsResponseValidationError) ErrorName

ErrorName returns error name.

func (DeleteTopicsResponseValidationError) Field

Field function returns field value.

func (DeleteTopicsResponseValidationError) Key

Key function returns key value.

func (DeleteTopicsResponseValidationError) Reason

Reason function returns reason value.

type GetTopicsRequest

type GetTopicsRequest struct {
	Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTopicsRequest) CloneMessageVT

func (m *GetTopicsRequest) CloneMessageVT() proto.Message

func (*GetTopicsRequest) CloneVT

func (m *GetTopicsRequest) CloneVT() *GetTopicsRequest

func (*GetTopicsRequest) Descriptor deprecated

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

Deprecated: Use GetTopicsRequest.ProtoReflect.Descriptor instead.

func (*GetTopicsRequest) EqualMessageVT

func (this *GetTopicsRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*GetTopicsRequest) EqualVT

func (this *GetTopicsRequest) EqualVT(that *GetTopicsRequest) bool

func (*GetTopicsRequest) GetIds

func (x *GetTopicsRequest) GetIds() []int64

func (*GetTopicsRequest) MarshalToSizedBufferVT

func (m *GetTopicsRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*GetTopicsRequest) MarshalToSizedBufferVTStrict

func (m *GetTopicsRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*GetTopicsRequest) MarshalToVT

func (m *GetTopicsRequest) MarshalToVT(dAtA []byte) (int, error)

func (*GetTopicsRequest) MarshalToVTStrict

func (m *GetTopicsRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*GetTopicsRequest) MarshalVT

func (m *GetTopicsRequest) MarshalVT() (dAtA []byte, err error)

func (*GetTopicsRequest) MarshalVTStrict

func (m *GetTopicsRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*GetTopicsRequest) ProtoMessage

func (*GetTopicsRequest) ProtoMessage()

func (*GetTopicsRequest) ProtoReflect

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

func (*GetTopicsRequest) Reset

func (x *GetTopicsRequest) Reset()

func (*GetTopicsRequest) SizeVT

func (m *GetTopicsRequest) SizeVT() (n int)

func (*GetTopicsRequest) String

func (x *GetTopicsRequest) String() string

func (*GetTopicsRequest) UnmarshalVT

func (m *GetTopicsRequest) UnmarshalVT(dAtA []byte) error

func (*GetTopicsRequest) UnmarshalVTUnsafe

func (m *GetTopicsRequest) UnmarshalVTUnsafe(dAtA []byte) error

func (*GetTopicsRequest) Validate

func (m *GetTopicsRequest) Validate() error

Validate checks the field values on GetTopicsRequest 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 (*GetTopicsRequest) ValidateAll

func (m *GetTopicsRequest) ValidateAll() error

ValidateAll checks the field values on GetTopicsRequest 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 GetTopicsRequestMultiError, or nil if none found.

type GetTopicsRequestMultiError

type GetTopicsRequestMultiError []error

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

func (GetTopicsRequestMultiError) AllErrors

func (m GetTopicsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetTopicsRequestMultiError) Error

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

type GetTopicsRequestValidationError

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

GetTopicsRequestValidationError is the validation error returned by GetTopicsRequest.Validate if the designated constraints aren't met.

func (GetTopicsRequestValidationError) Cause

Cause function returns cause value.

func (GetTopicsRequestValidationError) Error

Error satisfies the builtin error interface

func (GetTopicsRequestValidationError) ErrorName

ErrorName returns error name.

func (GetTopicsRequestValidationError) Field

Field function returns field value.

func (GetTopicsRequestValidationError) Key

Key function returns key value.

func (GetTopicsRequestValidationError) Reason

Reason function returns reason value.

type GetTopicsResponse

type GetTopicsResponse struct {
	Topics []*Topic `protobuf:"bytes,1,rep,name=topics,proto3" json:"topics,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTopicsResponse) CloneMessageVT

func (m *GetTopicsResponse) CloneMessageVT() proto.Message

func (*GetTopicsResponse) CloneVT

func (m *GetTopicsResponse) CloneVT() *GetTopicsResponse

func (*GetTopicsResponse) Descriptor deprecated

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

Deprecated: Use GetTopicsResponse.ProtoReflect.Descriptor instead.

func (*GetTopicsResponse) EqualMessageVT

func (this *GetTopicsResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*GetTopicsResponse) EqualVT

func (this *GetTopicsResponse) EqualVT(that *GetTopicsResponse) bool

func (*GetTopicsResponse) GetTopics

func (x *GetTopicsResponse) GetTopics() []*Topic

func (*GetTopicsResponse) MarshalToSizedBufferVT

func (m *GetTopicsResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*GetTopicsResponse) MarshalToSizedBufferVTStrict

func (m *GetTopicsResponse) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*GetTopicsResponse) MarshalToVT

func (m *GetTopicsResponse) MarshalToVT(dAtA []byte) (int, error)

func (*GetTopicsResponse) MarshalToVTStrict

func (m *GetTopicsResponse) MarshalToVTStrict(dAtA []byte) (int, error)

func (*GetTopicsResponse) MarshalVT

func (m *GetTopicsResponse) MarshalVT() (dAtA []byte, err error)

func (*GetTopicsResponse) MarshalVTStrict

func (m *GetTopicsResponse) MarshalVTStrict() (dAtA []byte, err error)

func (*GetTopicsResponse) ProtoMessage

func (*GetTopicsResponse) ProtoMessage()

func (*GetTopicsResponse) ProtoReflect

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

func (*GetTopicsResponse) Reset

func (x *GetTopicsResponse) Reset()

func (*GetTopicsResponse) SizeVT

func (m *GetTopicsResponse) SizeVT() (n int)

func (*GetTopicsResponse) String

func (x *GetTopicsResponse) String() string

func (*GetTopicsResponse) UnmarshalVT

func (m *GetTopicsResponse) UnmarshalVT(dAtA []byte) error

func (*GetTopicsResponse) UnmarshalVTUnsafe

func (m *GetTopicsResponse) UnmarshalVTUnsafe(dAtA []byte) error

func (*GetTopicsResponse) Validate

func (m *GetTopicsResponse) Validate() error

Validate checks the field values on GetTopicsResponse 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 (*GetTopicsResponse) ValidateAll

func (m *GetTopicsResponse) ValidateAll() error

ValidateAll checks the field values on GetTopicsResponse 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 GetTopicsResponseMultiError, or nil if none found.

type GetTopicsResponseMultiError

type GetTopicsResponseMultiError []error

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

func (GetTopicsResponseMultiError) AllErrors

func (m GetTopicsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetTopicsResponseMultiError) Error

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

type GetTopicsResponseValidationError

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

GetTopicsResponseValidationError is the validation error returned by GetTopicsResponse.Validate if the designated constraints aren't met.

func (GetTopicsResponseValidationError) Cause

Cause function returns cause value.

func (GetTopicsResponseValidationError) Error

Error satisfies the builtin error interface

func (GetTopicsResponseValidationError) ErrorName

ErrorName returns error name.

func (GetTopicsResponseValidationError) Field

Field function returns field value.

func (GetTopicsResponseValidationError) Key

Key function returns key value.

func (GetTopicsResponseValidationError) Reason

Reason function returns reason value.

type Topic

type Topic struct {
	Id        int64                  `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Name      string                 `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	TaskIds   []int64                `protobuf:"varint,3,rep,packed,name=task_ids,json=taskIds,proto3" json:"task_ids,omitempty"`
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

func (*Topic) CloneMessageVT

func (m *Topic) CloneMessageVT() proto.Message

func (*Topic) CloneVT

func (m *Topic) CloneVT() *Topic

func (*Topic) Descriptor deprecated

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

Deprecated: Use Topic.ProtoReflect.Descriptor instead.

func (*Topic) EqualMessageVT

func (this *Topic) EqualMessageVT(thatMsg proto.Message) bool

func (*Topic) EqualVT

func (this *Topic) EqualVT(that *Topic) bool

func (*Topic) GetCreatedAt

func (x *Topic) GetCreatedAt() *timestamppb.Timestamp

func (*Topic) GetId

func (x *Topic) GetId() int64

func (*Topic) GetName

func (x *Topic) GetName() string

func (*Topic) GetTaskIds

func (x *Topic) GetTaskIds() []int64

func (*Topic) GetUpdatedAt

func (x *Topic) GetUpdatedAt() *timestamppb.Timestamp

func (*Topic) MarshalToSizedBufferVT

func (m *Topic) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Topic) MarshalToSizedBufferVTStrict

func (m *Topic) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Topic) MarshalToVT

func (m *Topic) MarshalToVT(dAtA []byte) (int, error)

func (*Topic) MarshalToVTStrict

func (m *Topic) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Topic) MarshalVT

func (m *Topic) MarshalVT() (dAtA []byte, err error)

func (*Topic) MarshalVTStrict

func (m *Topic) MarshalVTStrict() (dAtA []byte, err error)

func (*Topic) ProtoMessage

func (*Topic) ProtoMessage()

func (*Topic) ProtoReflect

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

func (*Topic) Reset

func (x *Topic) Reset()

func (*Topic) SizeVT

func (m *Topic) SizeVT() (n int)

func (*Topic) String

func (x *Topic) String() string

func (*Topic) UnmarshalVT

func (m *Topic) UnmarshalVT(dAtA []byte) error

func (*Topic) UnmarshalVTUnsafe

func (m *Topic) UnmarshalVTUnsafe(dAtA []byte) error

func (*Topic) Validate

func (m *Topic) Validate() error

Validate checks the field values on Topic 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 (*Topic) ValidateAll

func (m *Topic) ValidateAll() error

ValidateAll checks the field values on Topic 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 TopicMultiError, or nil if none found.

type TopicMultiError

type TopicMultiError []error

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

func (TopicMultiError) AllErrors

func (m TopicMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TopicMultiError) Error

func (m TopicMultiError) Error() string

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

type TopicServiceClient

type TopicServiceClient interface {
	GetTopics(ctx context.Context, in *GetTopicsRequest, opts ...grpc.CallOption) (*GetTopicsResponse, error)
	CreateTopics(ctx context.Context, in *CreateTopicsRequest, opts ...grpc.CallOption) (*CreateTopicsResponse, error)
	UpdateTopics(ctx context.Context, in *UpdateTopicsRequest, opts ...grpc.CallOption) (*UpdateTopicsResponse, error)
	DeleteTopics(ctx context.Context, in *DeleteTopicsRequest, opts ...grpc.CallOption) (*DeleteTopicsResponse, error)
}

TopicServiceClient is the client API for TopicService 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 TopicServiceServer

type TopicServiceServer interface {
	GetTopics(context.Context, *GetTopicsRequest) (*GetTopicsResponse, error)
	CreateTopics(context.Context, *CreateTopicsRequest) (*CreateTopicsResponse, error)
	UpdateTopics(context.Context, *UpdateTopicsRequest) (*UpdateTopicsResponse, error)
	DeleteTopics(context.Context, *DeleteTopicsRequest) (*DeleteTopicsResponse, error)
	// contains filtered or unexported methods
}

TopicServiceServer is the server API for TopicService service. All implementations must embed UnimplementedTopicServiceServer for forward compatibility

type TopicValidationError

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

TopicValidationError is the validation error returned by Topic.Validate if the designated constraints aren't met.

func (TopicValidationError) Cause

func (e TopicValidationError) Cause() error

Cause function returns cause value.

func (TopicValidationError) Error

func (e TopicValidationError) Error() string

Error satisfies the builtin error interface

func (TopicValidationError) ErrorName

func (e TopicValidationError) ErrorName() string

ErrorName returns error name.

func (TopicValidationError) Field

func (e TopicValidationError) Field() string

Field function returns field value.

func (TopicValidationError) Key

func (e TopicValidationError) Key() bool

Key function returns key value.

func (TopicValidationError) Reason

func (e TopicValidationError) Reason() string

Reason function returns reason value.

type TopicWithFetchedTasks

type TopicWithFetchedTasks struct {
	Id        int64                  `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Name      string                 `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Tasks     []*tasks.Task          `protobuf:"bytes,3,rep,name=tasks,proto3" json:"tasks,omitempty"`
	CreatedAt *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=created_at,json=createdAt,proto3" json:"created_at,omitempty"`
	UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at,omitempty"`
	// contains filtered or unexported fields
}

func (*TopicWithFetchedTasks) CloneMessageVT

func (m *TopicWithFetchedTasks) CloneMessageVT() proto.Message

func (*TopicWithFetchedTasks) CloneVT

func (*TopicWithFetchedTasks) Descriptor deprecated

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

Deprecated: Use TopicWithFetchedTasks.ProtoReflect.Descriptor instead.

func (*TopicWithFetchedTasks) EqualMessageVT

func (this *TopicWithFetchedTasks) EqualMessageVT(thatMsg proto.Message) bool

func (*TopicWithFetchedTasks) EqualVT

func (this *TopicWithFetchedTasks) EqualVT(that *TopicWithFetchedTasks) bool

func (*TopicWithFetchedTasks) GetCreatedAt

func (x *TopicWithFetchedTasks) GetCreatedAt() *timestamppb.Timestamp

func (*TopicWithFetchedTasks) GetId

func (x *TopicWithFetchedTasks) GetId() int64

func (*TopicWithFetchedTasks) GetName

func (x *TopicWithFetchedTasks) GetName() string

func (*TopicWithFetchedTasks) GetTasks

func (x *TopicWithFetchedTasks) GetTasks() []*tasks.Task

func (*TopicWithFetchedTasks) GetUpdatedAt

func (x *TopicWithFetchedTasks) GetUpdatedAt() *timestamppb.Timestamp

func (*TopicWithFetchedTasks) MarshalToSizedBufferVT

func (m *TopicWithFetchedTasks) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*TopicWithFetchedTasks) MarshalToSizedBufferVTStrict

func (m *TopicWithFetchedTasks) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*TopicWithFetchedTasks) MarshalToVT

func (m *TopicWithFetchedTasks) MarshalToVT(dAtA []byte) (int, error)

func (*TopicWithFetchedTasks) MarshalToVTStrict

func (m *TopicWithFetchedTasks) MarshalToVTStrict(dAtA []byte) (int, error)

func (*TopicWithFetchedTasks) MarshalVT

func (m *TopicWithFetchedTasks) MarshalVT() (dAtA []byte, err error)

func (*TopicWithFetchedTasks) MarshalVTStrict

func (m *TopicWithFetchedTasks) MarshalVTStrict() (dAtA []byte, err error)

func (*TopicWithFetchedTasks) ProtoMessage

func (*TopicWithFetchedTasks) ProtoMessage()

func (*TopicWithFetchedTasks) ProtoReflect

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

func (*TopicWithFetchedTasks) Reset

func (x *TopicWithFetchedTasks) Reset()

func (*TopicWithFetchedTasks) SizeVT

func (m *TopicWithFetchedTasks) SizeVT() (n int)

func (*TopicWithFetchedTasks) String

func (x *TopicWithFetchedTasks) String() string

func (*TopicWithFetchedTasks) UnmarshalVT

func (m *TopicWithFetchedTasks) UnmarshalVT(dAtA []byte) error

func (*TopicWithFetchedTasks) UnmarshalVTUnsafe

func (m *TopicWithFetchedTasks) UnmarshalVTUnsafe(dAtA []byte) error

func (*TopicWithFetchedTasks) Validate

func (m *TopicWithFetchedTasks) Validate() error

Validate checks the field values on TopicWithFetchedTasks 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 (*TopicWithFetchedTasks) ValidateAll

func (m *TopicWithFetchedTasks) ValidateAll() error

ValidateAll checks the field values on TopicWithFetchedTasks 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 TopicWithFetchedTasksMultiError, or nil if none found.

type TopicWithFetchedTasksMultiError

type TopicWithFetchedTasksMultiError []error

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

func (TopicWithFetchedTasksMultiError) AllErrors

func (m TopicWithFetchedTasksMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TopicWithFetchedTasksMultiError) Error

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

type TopicWithFetchedTasksValidationError

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

TopicWithFetchedTasksValidationError is the validation error returned by TopicWithFetchedTasks.Validate if the designated constraints aren't met.

func (TopicWithFetchedTasksValidationError) Cause

Cause function returns cause value.

func (TopicWithFetchedTasksValidationError) Error

Error satisfies the builtin error interface

func (TopicWithFetchedTasksValidationError) ErrorName

ErrorName returns error name.

func (TopicWithFetchedTasksValidationError) Field

Field function returns field value.

func (TopicWithFetchedTasksValidationError) Key

Key function returns key value.

func (TopicWithFetchedTasksValidationError) Reason

Reason function returns reason value.

type UnimplementedTopicServiceServer

type UnimplementedTopicServiceServer struct {
}

UnimplementedTopicServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedTopicServiceServer) CreateTopics

func (UnimplementedTopicServiceServer) DeleteTopics

func (UnimplementedTopicServiceServer) GetTopics

func (UnimplementedTopicServiceServer) UpdateTopics

type UnsafeTopicServiceServer

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

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

type UpdateTopicsRequest

type UpdateTopicsRequest struct {
	TopicsToUpdate []*UpdateTopicsRequest_TopicPrototype `protobuf:"bytes,1,rep,name=topics_to_update,json=topicsToUpdate,proto3" json:"topics_to_update,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateTopicsRequest) CloneMessageVT

func (m *UpdateTopicsRequest) CloneMessageVT() proto.Message

func (*UpdateTopicsRequest) CloneVT

func (*UpdateTopicsRequest) Descriptor deprecated

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

Deprecated: Use UpdateTopicsRequest.ProtoReflect.Descriptor instead.

func (*UpdateTopicsRequest) EqualMessageVT

func (this *UpdateTopicsRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*UpdateTopicsRequest) EqualVT

func (this *UpdateTopicsRequest) EqualVT(that *UpdateTopicsRequest) bool

func (*UpdateTopicsRequest) GetTopicsToUpdate

func (x *UpdateTopicsRequest) GetTopicsToUpdate() []*UpdateTopicsRequest_TopicPrototype

func (*UpdateTopicsRequest) MarshalToSizedBufferVT

func (m *UpdateTopicsRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*UpdateTopicsRequest) MarshalToSizedBufferVTStrict

func (m *UpdateTopicsRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*UpdateTopicsRequest) MarshalToVT

func (m *UpdateTopicsRequest) MarshalToVT(dAtA []byte) (int, error)

func (*UpdateTopicsRequest) MarshalToVTStrict

func (m *UpdateTopicsRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*UpdateTopicsRequest) MarshalVT

func (m *UpdateTopicsRequest) MarshalVT() (dAtA []byte, err error)

func (*UpdateTopicsRequest) MarshalVTStrict

func (m *UpdateTopicsRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*UpdateTopicsRequest) ProtoMessage

func (*UpdateTopicsRequest) ProtoMessage()

func (*UpdateTopicsRequest) ProtoReflect

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

func (*UpdateTopicsRequest) Reset

func (x *UpdateTopicsRequest) Reset()

func (*UpdateTopicsRequest) SizeVT

func (m *UpdateTopicsRequest) SizeVT() (n int)

func (*UpdateTopicsRequest) String

func (x *UpdateTopicsRequest) String() string

func (*UpdateTopicsRequest) UnmarshalVT

func (m *UpdateTopicsRequest) UnmarshalVT(dAtA []byte) error

func (*UpdateTopicsRequest) UnmarshalVTUnsafe

func (m *UpdateTopicsRequest) UnmarshalVTUnsafe(dAtA []byte) error

func (*UpdateTopicsRequest) Validate

func (m *UpdateTopicsRequest) Validate() error

Validate checks the field values on UpdateTopicsRequest 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 (*UpdateTopicsRequest) ValidateAll

func (m *UpdateTopicsRequest) ValidateAll() error

ValidateAll checks the field values on UpdateTopicsRequest 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 UpdateTopicsRequestMultiError, or nil if none found.

type UpdateTopicsRequestMultiError

type UpdateTopicsRequestMultiError []error

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

func (UpdateTopicsRequestMultiError) AllErrors

func (m UpdateTopicsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateTopicsRequestMultiError) Error

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

type UpdateTopicsRequestValidationError

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

UpdateTopicsRequestValidationError is the validation error returned by UpdateTopicsRequest.Validate if the designated constraints aren't met.

func (UpdateTopicsRequestValidationError) Cause

Cause function returns cause value.

func (UpdateTopicsRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdateTopicsRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdateTopicsRequestValidationError) Field

Field function returns field value.

func (UpdateTopicsRequestValidationError) Key

Key function returns key value.

func (UpdateTopicsRequestValidationError) Reason

Reason function returns reason value.

type UpdateTopicsRequest_TopicPrototype

type UpdateTopicsRequest_TopicPrototype struct {
	Id      int64   `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Name    *string `protobuf:"bytes,2,opt,name=name,proto3,oneof" json:"name,omitempty"`
	TaskIds []int64 `protobuf:"varint,3,rep,packed,name=task_ids,json=taskIds,proto3" json:"task_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateTopicsRequest_TopicPrototype) CloneMessageVT

func (m *UpdateTopicsRequest_TopicPrototype) CloneMessageVT() proto.Message

func (*UpdateTopicsRequest_TopicPrototype) CloneVT

func (*UpdateTopicsRequest_TopicPrototype) Descriptor deprecated

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

Deprecated: Use UpdateTopicsRequest_TopicPrototype.ProtoReflect.Descriptor instead.

func (*UpdateTopicsRequest_TopicPrototype) EqualMessageVT

func (this *UpdateTopicsRequest_TopicPrototype) EqualMessageVT(thatMsg proto.Message) bool

func (*UpdateTopicsRequest_TopicPrototype) EqualVT

func (*UpdateTopicsRequest_TopicPrototype) GetId

func (*UpdateTopicsRequest_TopicPrototype) GetName

func (*UpdateTopicsRequest_TopicPrototype) GetTaskIds

func (x *UpdateTopicsRequest_TopicPrototype) GetTaskIds() []int64

func (*UpdateTopicsRequest_TopicPrototype) MarshalToSizedBufferVT

func (m *UpdateTopicsRequest_TopicPrototype) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*UpdateTopicsRequest_TopicPrototype) MarshalToSizedBufferVTStrict

func (m *UpdateTopicsRequest_TopicPrototype) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*UpdateTopicsRequest_TopicPrototype) MarshalToVT

func (m *UpdateTopicsRequest_TopicPrototype) MarshalToVT(dAtA []byte) (int, error)

func (*UpdateTopicsRequest_TopicPrototype) MarshalToVTStrict

func (m *UpdateTopicsRequest_TopicPrototype) MarshalToVTStrict(dAtA []byte) (int, error)

func (*UpdateTopicsRequest_TopicPrototype) MarshalVT

func (m *UpdateTopicsRequest_TopicPrototype) MarshalVT() (dAtA []byte, err error)

func (*UpdateTopicsRequest_TopicPrototype) MarshalVTStrict

func (m *UpdateTopicsRequest_TopicPrototype) MarshalVTStrict() (dAtA []byte, err error)

func (*UpdateTopicsRequest_TopicPrototype) ProtoMessage

func (*UpdateTopicsRequest_TopicPrototype) ProtoMessage()

func (*UpdateTopicsRequest_TopicPrototype) ProtoReflect

func (*UpdateTopicsRequest_TopicPrototype) Reset

func (*UpdateTopicsRequest_TopicPrototype) SizeVT

func (m *UpdateTopicsRequest_TopicPrototype) SizeVT() (n int)

func (*UpdateTopicsRequest_TopicPrototype) String

func (*UpdateTopicsRequest_TopicPrototype) UnmarshalVT

func (m *UpdateTopicsRequest_TopicPrototype) UnmarshalVT(dAtA []byte) error

func (*UpdateTopicsRequest_TopicPrototype) UnmarshalVTUnsafe

func (m *UpdateTopicsRequest_TopicPrototype) UnmarshalVTUnsafe(dAtA []byte) error

func (*UpdateTopicsRequest_TopicPrototype) Validate

Validate checks the field values on UpdateTopicsRequest_TopicPrototype 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 (*UpdateTopicsRequest_TopicPrototype) ValidateAll

func (m *UpdateTopicsRequest_TopicPrototype) ValidateAll() error

ValidateAll checks the field values on UpdateTopicsRequest_TopicPrototype 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 UpdateTopicsRequest_TopicPrototypeMultiError, or nil if none found.

type UpdateTopicsRequest_TopicPrototypeMultiError

type UpdateTopicsRequest_TopicPrototypeMultiError []error

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

func (UpdateTopicsRequest_TopicPrototypeMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (UpdateTopicsRequest_TopicPrototypeMultiError) Error

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

type UpdateTopicsRequest_TopicPrototypeValidationError

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

UpdateTopicsRequest_TopicPrototypeValidationError is the validation error returned by UpdateTopicsRequest_TopicPrototype.Validate if the designated constraints aren't met.

func (UpdateTopicsRequest_TopicPrototypeValidationError) Cause

Cause function returns cause value.

func (UpdateTopicsRequest_TopicPrototypeValidationError) Error

Error satisfies the builtin error interface

func (UpdateTopicsRequest_TopicPrototypeValidationError) ErrorName

ErrorName returns error name.

func (UpdateTopicsRequest_TopicPrototypeValidationError) Field

Field function returns field value.

func (UpdateTopicsRequest_TopicPrototypeValidationError) Key

Key function returns key value.

func (UpdateTopicsRequest_TopicPrototypeValidationError) Reason

Reason function returns reason value.

type UpdateTopicsResponse

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

func (*UpdateTopicsResponse) CloneMessageVT

func (m *UpdateTopicsResponse) CloneMessageVT() proto.Message

func (*UpdateTopicsResponse) CloneVT

func (*UpdateTopicsResponse) Descriptor deprecated

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

Deprecated: Use UpdateTopicsResponse.ProtoReflect.Descriptor instead.

func (*UpdateTopicsResponse) EqualMessageVT

func (this *UpdateTopicsResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*UpdateTopicsResponse) EqualVT

func (this *UpdateTopicsResponse) EqualVT(that *UpdateTopicsResponse) bool

func (*UpdateTopicsResponse) MarshalToSizedBufferVT

func (m *UpdateTopicsResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*UpdateTopicsResponse) MarshalToSizedBufferVTStrict

func (m *UpdateTopicsResponse) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*UpdateTopicsResponse) MarshalToVT

func (m *UpdateTopicsResponse) MarshalToVT(dAtA []byte) (int, error)

func (*UpdateTopicsResponse) MarshalToVTStrict

func (m *UpdateTopicsResponse) MarshalToVTStrict(dAtA []byte) (int, error)

func (*UpdateTopicsResponse) MarshalVT

func (m *UpdateTopicsResponse) MarshalVT() (dAtA []byte, err error)

func (*UpdateTopicsResponse) MarshalVTStrict

func (m *UpdateTopicsResponse) MarshalVTStrict() (dAtA []byte, err error)

func (*UpdateTopicsResponse) ProtoMessage

func (*UpdateTopicsResponse) ProtoMessage()

func (*UpdateTopicsResponse) ProtoReflect

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

func (*UpdateTopicsResponse) Reset

func (x *UpdateTopicsResponse) Reset()

func (*UpdateTopicsResponse) SizeVT

func (m *UpdateTopicsResponse) SizeVT() (n int)

func (*UpdateTopicsResponse) String

func (x *UpdateTopicsResponse) String() string

func (*UpdateTopicsResponse) UnmarshalVT

func (m *UpdateTopicsResponse) UnmarshalVT(dAtA []byte) error

func (*UpdateTopicsResponse) UnmarshalVTUnsafe

func (m *UpdateTopicsResponse) UnmarshalVTUnsafe(dAtA []byte) error

func (*UpdateTopicsResponse) Validate

func (m *UpdateTopicsResponse) Validate() error

Validate checks the field values on UpdateTopicsResponse 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 (*UpdateTopicsResponse) ValidateAll

func (m *UpdateTopicsResponse) ValidateAll() error

ValidateAll checks the field values on UpdateTopicsResponse 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 UpdateTopicsResponseMultiError, or nil if none found.

type UpdateTopicsResponseMultiError

type UpdateTopicsResponseMultiError []error

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

func (UpdateTopicsResponseMultiError) AllErrors

func (m UpdateTopicsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateTopicsResponseMultiError) Error

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

type UpdateTopicsResponseValidationError

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

UpdateTopicsResponseValidationError is the validation error returned by UpdateTopicsResponse.Validate if the designated constraints aren't met.

func (UpdateTopicsResponseValidationError) Cause

Cause function returns cause value.

func (UpdateTopicsResponseValidationError) Error

Error satisfies the builtin error interface

func (UpdateTopicsResponseValidationError) ErrorName

ErrorName returns error name.

func (UpdateTopicsResponseValidationError) Field

Field function returns field value.

func (UpdateTopicsResponseValidationError) Key

Key function returns key value.

func (UpdateTopicsResponseValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL