@ -362,22 +362,18 @@ func (x *PublishRecordResponse) GetError() string {
}
}
// ////////////////////////////////////////////////
// ////////////////////////////////////////////////
type StartSubscribeSession Request struct {
type SubscribeRecord Request struct {
state protoimpl . MessageState
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
unknownFields protoimpl . UnknownFields
ConsumerGroup string ` protobuf:"bytes,1,opt,name=consumer_group,json=consumerGroup,proto3" json:"consumer_group,omitempty" `
ConsumerGroupInstanceId string ` protobuf:"bytes,2,opt,name=consumer_group_instance_id,json=consumerGroupInstanceId,proto3" json:"consumer_group_instance_id,omitempty" `
Topic * schema_pb . Topic ` protobuf:"bytes,4,opt,name=topic,proto3" json:"topic,omitempty" `
PartitionOffsets [ ] * schema_pb . PartitionOffset ` protobuf:"bytes,5,rep,name=partition_offsets,json=partitionOffsets,proto3" json:"partition_offsets,omitempty" `
Filter string ` protobuf:"bytes,6,opt,name=filter,proto3" json:"filter,omitempty" `
MaxSubscribedPartitions int32 ` protobuf:"varint,8,opt,name=max_subscribed_partitions,json=maxSubscribedPartitions,proto3" json:"max_subscribed_partitions,omitempty" `
SlidingWindowSize int32 ` protobuf:"varint,9,opt,name=sliding_window_size,json=slidingWindowSize,proto3" json:"sliding_window_size,omitempty" `
Init * SubscribeRecordRequest_InitSubscribeRecordRequest ` protobuf:"bytes,1,opt,name=init,proto3" json:"init,omitempty" `
AckSequence int64 ` protobuf:"varint,2,opt,name=ack_sequence,json=ackSequence,proto3" json:"ack_sequence,omitempty" `
AckKey [ ] byte ` protobuf:"bytes,3,opt,name=ack_key,json=ackKey,proto3" json:"ack_key,omitempty" `
}
}
func ( x * StartSubscribeSession Request ) Reset ( ) {
* x = StartSubscribeSession Request { }
func ( x * SubscribeRecordRequest ) Reset ( ) {
* x = SubscribeRecordRequest { }
if protoimpl . UnsafeEnabled {
if protoimpl . UnsafeEnabled {
mi := & file_mq_agent_proto_msgTypes [ 6 ]
mi := & file_mq_agent_proto_msgTypes [ 6 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
@ -385,13 +381,13 @@ func (x *StartSubscribeSessionRequest) Reset() {
}
}
}
}
func ( x * StartSubscribeSession Request ) String ( ) string {
func ( x * SubscribeRecord Request ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
return protoimpl . X . MessageStringOf ( x )
}
}
func ( * StartSubscribeSession Request ) ProtoMessage ( ) { }
func ( * SubscribeRecord Request ) ProtoMessage ( ) { }
func ( x * StartSubscribeSession Request ) ProtoReflect ( ) protoreflect . Message {
func ( x * SubscribeRecord Request ) ProtoReflect ( ) protoreflect . Message {
mi := & file_mq_agent_proto_msgTypes [ 6 ]
mi := & file_mq_agent_proto_msgTypes [ 6 ]
if protoimpl . UnsafeEnabled && x != nil {
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
@ -403,71 +399,47 @@ func (x *StartSubscribeSessionRequest) ProtoReflect() protoreflect.Message {
return mi . MessageOf ( x )
return mi . MessageOf ( x )
}
}
// Deprecated: Use StartSubscribeSession Request.ProtoReflect.Descriptor instead.
func ( * StartSubscribeSession Request ) Descriptor ( ) ( [ ] byte , [ ] int ) {
// Deprecated: Use SubscribeRecord Request.ProtoReflect.Descriptor instead.
func ( * SubscribeRecord Request ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_mq_agent_proto_rawDescGZIP ( ) , [ ] int { 6 }
return file_mq_agent_proto_rawDescGZIP ( ) , [ ] int { 6 }
}
}
func ( x * StartSubscribeSessionRequest ) GetConsumerGroup ( ) string {
if x != nil {
return x . ConsumerGroup
}
return ""
}
func ( x * StartSubscribeSessionRequest ) GetConsumerGroupInstanceId ( ) string {
if x != nil {
return x . ConsumerGroupInstanceId
}
return ""
}
func ( x * StartSubscribeSessionRequest ) GetTopic ( ) * schema_pb . Topic {
func ( x * SubscribeRecordRequest ) GetInit ( ) * SubscribeRecordRequest_InitSubscribeRecordRequest {
if x != nil {
if x != nil {
return x . Topic
return x . Init
}
}
return nil
return nil
}
}
func ( x * StartSubscribeSessionRequest ) GetPartitionOffsets ( ) [ ] * schema_pb . PartitionOffset {
if x != nil {
return x . PartitionOffsets
}
return nil
}
func ( x * StartSubscribeSessionRequest ) GetFilter ( ) string {
if x != nil {
return x . Filter
}
return ""
}
func ( x * StartSubscribeSessionRequest ) GetMaxSubscribedPartitions ( ) int32 {
func ( x * SubscribeRecordRequest ) GetAckSequence ( ) int64 {
if x != nil {
if x != nil {
return x . MaxSubscribedPartitions
return x . AckSequence
}
}
return 0
return 0
}
}
func ( x * StartSubscribeSessionRequest ) GetSlidingWindowSize ( ) int32 {
func ( x * SubscribeRecordRequest ) GetAckKey ( ) [ ] byte {
if x != nil {
if x != nil {
return x . SlidingWindowSize
return x . AckKey
}
}
return 0
return nil
}
}
type StartSubscribeSession Response struct {
type SubscribeRecordResponse struct {
state protoimpl . MessageState
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
unknownFields protoimpl . UnknownFields
Error string ` protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty" `
SessionId int64 ` protobuf:"varint,2,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty" `
Key [ ] byte ` protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty" `
Value * schema_pb . RecordValue ` protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty" `
TsNs int64 ` protobuf:"varint,4,opt,name=ts_ns,json=tsNs,proto3" json:"ts_ns,omitempty" `
Error string ` protobuf:"bytes,5,opt,name=error,proto3" json:"error,omitempty" `
IsEndOfStream bool ` protobuf:"varint,6,opt,name=is_end_of_stream,json=isEndOfStream,proto3" json:"is_end_of_stream,omitempty" `
IsEndOfTopic bool ` protobuf:"varint,7,opt,name=is_end_of_topic,json=isEndOfTopic,proto3" json:"is_end_of_topic,omitempty" `
}
}
func ( x * StartSubscribeSessionResponse ) Reset ( ) {
* x = StartSubscribeSessionResponse { }
func ( x * SubscribeRecord Response ) Reset ( ) {
* x = SubscribeRecord Response { }
if protoimpl . UnsafeEnabled {
if protoimpl . UnsafeEnabled {
mi := & file_mq_agent_proto_msgTypes [ 7 ]
mi := & file_mq_agent_proto_msgTypes [ 7 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
@ -475,13 +447,13 @@ func (x *StartSubscribeSessionResponse) Reset() {
}
}
}
}
func ( x * StartSubscribeSession Response ) String ( ) string {
func ( x * SubscribeRecord Response ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
return protoimpl . X . MessageStringOf ( x )
}
}
func ( * StartSubscribeSession Response ) ProtoMessage ( ) { }
func ( * SubscribeRecord Response ) ProtoMessage ( ) { }
func ( x * StartSubscribeSession Response ) ProtoReflect ( ) protoreflect . Message {
func ( x * SubscribeRecord Response ) ProtoReflect ( ) protoreflect . Message {
mi := & file_mq_agent_proto_msgTypes [ 7 ]
mi := & file_mq_agent_proto_msgTypes [ 7 ]
if protoimpl . UnsafeEnabled && x != nil {
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
@ -493,214 +465,84 @@ func (x *StartSubscribeSessionResponse) ProtoReflect() protoreflect.Message {
return mi . MessageOf ( x )
return mi . MessageOf ( x )
}
}
// Deprecated: Use StartSubscribeSession Response.ProtoReflect.Descriptor instead.
func ( * StartSubscribeSession Response ) Descriptor ( ) ( [ ] byte , [ ] int ) {
// Deprecated: Use SubscribeRecord Response.ProtoReflect.Descriptor instead.
func ( * SubscribeRecord Response ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_mq_agent_proto_rawDescGZIP ( ) , [ ] int { 7 }
return file_mq_agent_proto_rawDescGZIP ( ) , [ ] int { 7 }
}
}
func ( x * StartSubscribeSessionResponse ) GetError ( ) string {
func ( x * SubscribeRecordResponse ) GetKey ( ) [ ] byte {
if x != nil {
if x != nil {
return x . Error
return x . Key
}
}
return ""
return nil
}
}
func ( x * StartSubscribeSessionResponse ) GetSessionId ( ) int64 {
func ( x * SubscribeRecordResponse ) GetValue ( ) * schema_pb . RecordValue {
if x != nil {
if x != nil {
return x . SessionId
}
return 0
}
type CloseSubscribeSessionRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
SessionId int64 ` protobuf:"varint,1,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty" `
}
func ( x * CloseSubscribeSessionRequest ) Reset ( ) {
* x = CloseSubscribeSessionRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_mq_agent_proto_msgTypes [ 8 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * CloseSubscribeSessionRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * CloseSubscribeSessionRequest ) ProtoMessage ( ) { }
func ( x * CloseSubscribeSessionRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_mq_agent_proto_msgTypes [ 8 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
return x . Value
}
}
return mi . MessageOf ( x )
}
// Deprecated: Use CloseSubscribeSessionRequest.ProtoReflect.Descriptor instead.
func ( * CloseSubscribeSessionRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_mq_agent_proto_rawDescGZIP ( ) , [ ] int { 8 }
return nil
}
}
func ( x * CloseSubscribeSessionRequest ) GetSessionId ( ) int64 {
func ( x * SubscribeRecordResponse ) GetTsNs ( ) int64 {
if x != nil {
if x != nil {
return x . SessionId
return x . TsNs
}
}
return 0
return 0
}
}
type CloseSubscribeSessionResponse struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Error string ` protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty" `
}
func ( x * CloseSubscribeSessionResponse ) Reset ( ) {
* x = CloseSubscribeSessionResponse { }
if protoimpl . UnsafeEnabled {
mi := & file_mq_agent_proto_msgTypes [ 9 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * CloseSubscribeSessionResponse ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * CloseSubscribeSessionResponse ) ProtoMessage ( ) { }
func ( x * CloseSubscribeSessionResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_mq_agent_proto_msgTypes [ 9 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use CloseSubscribeSessionResponse.ProtoReflect.Descriptor instead.
func ( * CloseSubscribeSessionResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_mq_agent_proto_rawDescGZIP ( ) , [ ] int { 9 }
}
func ( x * CloseSubscribeSessionResponse ) GetError ( ) string {
func ( x * SubscribeRecordResponse ) GetError ( ) string {
if x != nil {
if x != nil {
return x . Error
return x . Error
}
}
return ""
return ""
}
}
// ////////////////////////////////////////////////
type SubscribeRecordRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
SessionId int64 ` protobuf:"varint,1,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty" ` // session_id is required for the first record
AckSequence int64 ` protobuf:"varint,2,opt,name=ack_sequence,json=ackSequence,proto3" json:"ack_sequence,omitempty" `
AckKey [ ] byte ` protobuf:"bytes,3,opt,name=ack_key,json=ackKey,proto3" json:"ack_key,omitempty" `
}
func ( x * SubscribeRecordRequest ) Reset ( ) {
* x = SubscribeRecordRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_mq_agent_proto_msgTypes [ 10 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * SubscribeRecordRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * SubscribeRecordRequest ) ProtoMessage ( ) { }
func ( x * SubscribeRecordRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_mq_agent_proto_msgTypes [ 10 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use SubscribeRecordRequest.ProtoReflect.Descriptor instead.
func ( * SubscribeRecordRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_mq_agent_proto_rawDescGZIP ( ) , [ ] int { 10 }
}
func ( x * SubscribeRecordRequest ) GetSessionId ( ) int64 {
if x != nil {
return x . SessionId
}
return 0
}
func ( x * SubscribeRecordRequest ) GetAckSequence ( ) int64 {
func ( x * SubscribeRecordResponse ) GetIsEndOfStream ( ) bool {
if x != nil {
if x != nil {
return x . AckSequence
return x . IsEndOfStream
}
}
return 0
return false
}
}
func ( x * SubscribeRecordRequest ) GetAckKey ( ) [ ] byte {
func ( x * SubscribeRecordResponse ) GetIsEndOfTopic ( ) bool {
if x != nil {
if x != nil {
return x . AckKey
return x . IsEndOfTopic
}
}
return nil
return false
}
}
type SubscribeRecordResponse struct {
type SubscribeRecordRequest_InitSubscribeRecordRequest struct {
state protoimpl . MessageState
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
unknownFields protoimpl . UnknownFields
Sequence int64 ` protobuf:"varint,1,opt,name=sequence,proto3" json:"sequence ,omitempty"`
Key [ ] byte ` protobuf:"bytes,2,opt,name=key,proto3" json:"key ,omitempty"`
Value * schema_pb . RecordValue ` protobuf:"bytes,3,opt,name=value,proto3" json:"value ,omitempty"`
TsNs int64 ` protobuf:"varint,4,opt,name=ts_ns,json=tsNs,proto3" json:"ts_n s,omitempty"`
Error string ` protobuf:"bytes,5,opt,name=error,proto3" json:"erro r,omitempty"`
IsEndOfStream bool ` protobuf:"varint,6,opt,name=is_end_of_stream,json=isEndOfStream,proto3" json:"is_end_of_stream ,omitempty"`
IsEndOfTopic bool ` protobuf:"varint,7,opt,name=is_end_of_topic,json=isEndOfTopic,proto3" json:"is_end_of_topic ,omitempty"`
ConsumerGroup string ` protobuf:"bytes,1,opt,name=consumer_group,json=consumerGroup,proto3" json:"consumer_group,omitempty" `
ConsumerGroupInstanceId string ` protobuf:"bytes,2,opt,name=consumer_group_instance_id,json=consumerGroupInstanceId,proto3" json:"consumer_group_instance_id,omitempty" `
Topic * schema_pb . Topic ` protobuf:"bytes,4,opt,name=topic,proto3" json:"topic,omitempty" `
PartitionOffsets [ ] * schema_pb . PartitionOffset ` protobuf:"bytes,5,rep,name=partition_offsets,json=partitionOffsets,proto3" json:"partition_offsets,omitempty" `
Filter string ` protobuf:"bytes,6,opt,name=filter,proto3" json:"filter,omitempty" `
MaxSubscribedPartitions int32 ` protobuf:"varint,8,opt,name=max_subscribed_partitions,json=maxSubscribedPartitions,proto3" json:"max_subscribed_partitions,omitempty" `
SlidingWindowSize int32 ` protobuf:"varint,9,opt,name=sliding_window_size,json=slidingWindowSize,proto3" json:"sliding_window_size,omitempty" `
}
}
func ( x * SubscribeRecordResponse ) Reset ( ) {
* x = SubscribeRecordResponse { }
func ( x * SubscribeRecordRequest_InitSubscribeRecordRequest ) Reset ( ) {
* x = SubscribeRecordRequest_InitSubscribeRecordRequest { }
if protoimpl . UnsafeEnabled {
if protoimpl . UnsafeEnabled {
mi := & file_mq_agent_proto_msgTypes [ 11 ]
mi := & file_mq_agent_proto_msgTypes [ 8 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
ms . StoreMessageInfo ( mi )
}
}
}
}
func ( x * SubscribeRecordResponse ) String ( ) string {
func ( x * SubscribeRecordRequest_InitSubscribeRecordRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
return protoimpl . X . MessageStringOf ( x )
}
}
func ( * SubscribeRecordResponse ) ProtoMessage ( ) { }
func ( * SubscribeRecordRequest_InitSubscribeRecordRequest ) ProtoMessage ( ) { }
func ( x * SubscribeRecordResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_mq_agent_proto_msgTypes [ 11 ]
func ( x * SubscribeRecordRequest_InitSubscribeRecordRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_mq_agent_proto_msgTypes [ 8 ]
if protoimpl . UnsafeEnabled && x != nil {
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
if ms . LoadMessageInfo ( ) == nil {
@ -711,58 +553,58 @@ func (x *SubscribeRecordResponse) ProtoReflect() protoreflect.Message {
return mi . MessageOf ( x )
return mi . MessageOf ( x )
}
}
// Deprecated: Use SubscribeRecordResponse .ProtoReflect.Descriptor instead.
func ( * SubscribeRecordResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_mq_agent_proto_rawDescGZIP ( ) , [ ] int { 11 }
// Deprecated: Use SubscribeRecordRequest_InitSubscribeRecordRequest .ProtoReflect.Descriptor instead.
func ( * SubscribeRecordRequest_InitSubscribeRecordRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_mq_agent_proto_rawDescGZIP ( ) , [ ] int { 6 , 0 }
}
}
func ( x * SubscribeRecordResponse ) GetSequence ( ) int64 {
func ( x * SubscribeRecordRequest_InitSubscribeRecordRequest ) GetConsumerGroup ( ) string {
if x != nil {
if x != nil {
return x . Sequence
return x . ConsumerGroup
}
}
return 0
return ""
}
}
func ( x * SubscribeRecordResponse ) GetKey ( ) [ ] byte {
func ( x * SubscribeRecordRequest_InitSubscribeRecordRequest ) GetConsumerGroupInstanceId ( ) string {
if x != nil {
if x != nil {
return x . Key
return x . ConsumerGroupInstanceId
}
}
return nil
return ""
}
}
func ( x * SubscribeRecordResponse ) GetValue ( ) * schema_pb . RecordValue {
func ( x * SubscribeRecordRequest_InitSubscribeRecordRequest ) GetTopic ( ) * schema_pb . Topic {
if x != nil {
if x != nil {
return x . Value
return x . Topic
}
}
return nil
return nil
}
}
func ( x * SubscribeRecordResponse ) GetTsNs ( ) int64 {
func ( x * SubscribeRecordRequest_InitSubscribeRecordRequest ) GetPartitionOffsets ( ) [ ] * schema_pb . PartitionOffset {
if x != nil {
if x != nil {
return x . TsN s
return x . PartitionOffset s
}
}
return 0
return nil
}
}
func ( x * SubscribeRecordResponse ) GetErro r ( ) string {
func ( x * SubscribeRecordRequest_InitSubscribeRecordRequest ) GetFilte r ( ) string {
if x != nil {
if x != nil {
return x . Erro r
return x . Filte r
}
}
return ""
return ""
}
}
func ( x * SubscribeRecordResponse ) GetIsEndOfStream ( ) bool {
func ( x * SubscribeRecordRequest_InitSubscribeRecordRequest ) GetMaxSubscribedPartitions ( ) int32 {
if x != nil {
if x != nil {
return x . IsEndOfStream
return x . MaxSubscribedPartitions
}
}
return false
return 0
}
}
func ( x * SubscribeRecordResponse ) GetIsEndOfTopic ( ) bool {
func ( x * SubscribeRecordRequest_InitSubscribeRecordRequest ) GetSlidingWindowSize ( ) int32 {
if x != nil {
if x != nil {
return x . IsEndOfTopic
return x . SlidingWindowSize
}
}
return false
return 0
}
}
var File_mq_agent_proto protoreflect . FileDescriptor
var File_mq_agent_proto protoreflect . FileDescriptor
@ -808,115 +650,89 @@ var file_mq_agent_proto_rawDesc = []byte{
0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x21 , 0x0a , 0x0c , 0x61 , 0x63 , 0x6b , 0x5f , 0x73 , 0x65 , 0x71 , 0x75 ,
0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x21 , 0x0a , 0x0c , 0x61 , 0x63 , 0x6b , 0x5f , 0x73 , 0x65 , 0x71 , 0x75 ,
0x65 , 0x6e , 0x63 , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0b , 0x61 , 0x63 , 0x6b , 0x53 ,
0x65 , 0x6e , 0x63 , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0b , 0x61 , 0x63 , 0x6b , 0x53 ,
0x65 , 0x71 , 0x75 , 0x65 , 0x6e , 0x63 , 0x65 , 0x12 , 0x14 , 0x0a , 0x05 , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 ,
0x65 , 0x71 , 0x75 , 0x65 , 0x6e , 0x63 , 0x65 , 0x12 , 0x14 , 0x0a , 0x05 , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 ,
0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 , 0x22 , 0xf7 , 0x02 ,
0x0a , 0x1c , 0x53 , 0x74 , 0x61 , 0x72 , 0x74 , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 ,
0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x25 ,
0x0a , 0x0e , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6d , 0x65 , 0x72 , 0x5f , 0x67 , 0x72 , 0x6f , 0x75 , 0x70 ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0d , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6d , 0x65 , 0x72 ,
0x47 , 0x72 , 0x6f , 0x75 , 0x70 , 0x12 , 0x3b , 0x0a , 0x1a , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6d , 0x65 ,
0x72 , 0x5f , 0x67 , 0x72 , 0x6f , 0x75 , 0x70 , 0x5f , 0x69 , 0x6e , 0x73 , 0x74 , 0x61 , 0x6e , 0x63 , 0x65 ,
0x5f , 0x69 , 0x64 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x17 , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 ,
0x6d , 0x65 , 0x72 , 0x47 , 0x72 , 0x6f , 0x75 , 0x70 , 0x49 , 0x6e , 0x73 , 0x74 , 0x61 , 0x6e , 0x63 , 0x65 ,
0x49 , 0x64 , 0x12 , 0x26 , 0x0a , 0x05 , 0x74 , 0x6f , 0x70 , 0x69 , 0x63 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 ,
0x0b , 0x32 , 0x10 , 0x2e , 0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x5f , 0x70 , 0x62 , 0x2e , 0x54 , 0x6f ,
0x70 , 0x69 , 0x63 , 0x52 , 0x05 , 0x74 , 0x6f , 0x70 , 0x69 , 0x63 , 0x12 , 0x47 , 0x0a , 0x11 , 0x70 , 0x61 ,
0x72 , 0x74 , 0x69 , 0x74 , 0x69 , 0x6f , 0x6e , 0x5f , 0x6f , 0x66 , 0x66 , 0x73 , 0x65 , 0x74 , 0x73 , 0x18 ,
0x05 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x1a , 0x2e , 0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x5f , 0x70 ,
0x62 , 0x2e , 0x50 , 0x61 , 0x72 , 0x74 , 0x69 , 0x74 , 0x69 , 0x6f , 0x6e , 0x4f , 0x66 , 0x66 , 0x73 , 0x65 ,
0x74 , 0x52 , 0x10 , 0x70 , 0x61 , 0x72 , 0x74 , 0x69 , 0x74 , 0x69 , 0x6f , 0x6e , 0x4f , 0x66 , 0x66 , 0x73 ,
0x65 , 0x74 , 0x73 , 0x12 , 0x16 , 0x0a , 0x06 , 0x66 , 0x69 , 0x6c , 0x74 , 0x65 , 0x72 , 0x18 , 0x06 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x06 , 0x66 , 0x69 , 0x6c , 0x74 , 0x65 , 0x72 , 0x12 , 0x3a , 0x0a , 0x19 , 0x6d ,
0x61 , 0x78 , 0x5f , 0x73 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x64 , 0x5f , 0x70 , 0x61 ,
0x72 , 0x74 , 0x69 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x17 ,
0x6d , 0x61 , 0x78 , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x64 , 0x50 , 0x61 , 0x72 ,
0x74 , 0x69 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x12 , 0x2e , 0x0a , 0x13 , 0x73 , 0x6c , 0x69 , 0x64 , 0x69 ,
0x6e , 0x67 , 0x5f , 0x77 , 0x69 , 0x6e , 0x64 , 0x6f , 0x77 , 0x5f , 0x73 , 0x69 , 0x7a , 0x65 , 0x18 , 0x09 ,
0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x11 , 0x73 , 0x6c , 0x69 , 0x64 , 0x69 , 0x6e , 0x67 , 0x57 , 0x69 , 0x6e ,
0x64 , 0x6f , 0x77 , 0x53 , 0x69 , 0x7a , 0x65 , 0x22 , 0x54 , 0x0a , 0x1d , 0x53 , 0x74 , 0x61 , 0x72 , 0x74 ,
0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e ,
0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x14 , 0x0a , 0x05 , 0x65 , 0x72 , 0x72 , 0x6f ,
0x72 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 , 0x12 , 0x1d ,
0x0a , 0x0a , 0x73 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x5f , 0x69 , 0x64 , 0x18 , 0x02 , 0x20 , 0x01 ,
0x28 , 0x03 , 0x52 , 0x09 , 0x73 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x49 , 0x64 , 0x22 , 0x3d , 0x0a ,
0x1c , 0x43 , 0x6c , 0x6f , 0x73 , 0x65 , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x53 ,
0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x1d , 0x0a ,
0x0a , 0x73 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x5f , 0x69 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x09 , 0x73 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x49 , 0x64 , 0x22 , 0x35 , 0x0a , 0x1d ,
0x43 , 0x6c , 0x6f , 0x73 , 0x65 , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x53 , 0x65 ,
0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x14 , 0x0a ,
0x05 , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x65 , 0x72 ,
0x72 , 0x6f , 0x72 , 0x22 , 0x73 , 0x0a , 0x16 , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 ,
0x52 , 0x65 , 0x63 , 0x6f , 0x72 , 0x64 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x1d , 0x0a ,
0x0a , 0x73 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x5f , 0x69 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x09 , 0x73 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x49 , 0x64 , 0x12 , 0x21 , 0x0a , 0x0c ,
0x61 , 0x63 , 0x6b , 0x5f , 0x73 , 0x65 , 0x71 , 0x75 , 0x65 , 0x6e , 0x63 , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 ,
0x28 , 0x03 , 0x52 , 0x0b , 0x61 , 0x63 , 0x6b , 0x53 , 0x65 , 0x71 , 0x75 , 0x65 , 0x6e , 0x63 , 0x65 , 0x12 ,
0x17 , 0x0a , 0x07 , 0x61 , 0x63 , 0x6b , 0x5f , 0x6b , 0x65 , 0x79 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x0c ,
0x52 , 0x06 , 0x61 , 0x63 , 0x6b , 0x4b , 0x65 , 0x79 , 0x22 , 0xf0 , 0x01 , 0x0a , 0x17 , 0x53 , 0x75 , 0x62 ,
0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 , 0x64 , 0x52 , 0x65 , 0x73 , 0x70 ,
0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x1a , 0x0a , 0x08 , 0x73 , 0x65 , 0x71 , 0x75 , 0x65 , 0x6e , 0x63 , 0x65 ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x08 , 0x73 , 0x65 , 0x71 , 0x75 , 0x65 , 0x6e , 0x63 , 0x65 ,
0x12 , 0x10 , 0x0a , 0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x03 , 0x6b ,
0x65 , 0x79 , 0x12 , 0x2c , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 ,
0x0b , 0x32 , 0x16 , 0x2e , 0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x5f , 0x70 , 0x62 , 0x2e , 0x52 , 0x65 ,
0x63 , 0x6f , 0x72 , 0x64 , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 ,
0x12 , 0x13 , 0x0a , 0x05 , 0x74 , 0x73 , 0x5f , 0x6e , 0x73 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 ,
0x04 , 0x74 , 0x73 , 0x4e , 0x73 , 0x12 , 0x14 , 0x0a , 0x05 , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 , 0x18 , 0x05 ,
0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 , 0x12 , 0x27 , 0x0a , 0x10 , 0x69 ,
0x73 , 0x5f , 0x65 , 0x6e , 0x64 , 0x5f , 0x6f , 0x66 , 0x5f , 0x73 , 0x74 , 0x72 , 0x65 , 0x61 , 0x6d , 0x18 ,
0x06 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x0d , 0x69 , 0x73 , 0x45 , 0x6e , 0x64 , 0x4f , 0x66 , 0x53 , 0x74 ,
0x72 , 0x65 , 0x61 , 0x6d , 0x12 , 0x25 , 0x0a , 0x0f , 0x69 , 0x73 , 0x5f , 0x65 , 0x6e , 0x64 , 0x5f , 0x6f ,
0x66 , 0x5f , 0x74 , 0x6f , 0x70 , 0x69 , 0x63 , 0x18 , 0x07 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x0c , 0x69 ,
0x73 , 0x45 , 0x6e , 0x64 , 0x4f , 0x66 , 0x54 , 0x6f , 0x70 , 0x69 , 0x63 , 0x32 , 0xa1 , 0x05 , 0x0a , 0x15 ,
0x53 , 0x65 , 0x61 , 0x77 , 0x65 , 0x65 , 0x64 , 0x4d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 ,
0x41 , 0x67 , 0x65 , 0x6e , 0x74 , 0x12 , 0x6c , 0x0a , 0x13 , 0x53 , 0x74 , 0x61 , 0x72 , 0x74 , 0x50 , 0x75 ,
0x62 , 0x6c , 0x69 , 0x73 , 0x68 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x28 , 0x2e , 0x6d ,
0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x53 , 0x74 , 0x61 , 0x72 ,
0x74 , 0x50 , 0x75 , 0x62 , 0x6c , 0x69 , 0x73 , 0x68 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x52 ,
0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x29 , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 ,
0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x53 , 0x74 , 0x61 , 0x72 , 0x74 , 0x50 , 0x75 , 0x62 , 0x6c , 0x69 ,
0x73 , 0x68 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 ,
0x65 , 0x22 , 0x00 , 0x12 , 0x6c , 0x0a , 0x13 , 0x43 , 0x6c , 0x6f , 0x73 , 0x65 , 0x50 , 0x75 , 0x62 , 0x6c ,
0x69 , 0x73 , 0x68 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x28 , 0x2e , 0x6d , 0x65 , 0x73 ,
0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x43 , 0x6c , 0x6f , 0x73 , 0x65 , 0x50 ,
0x75 , 0x62 , 0x6c , 0x69 , 0x73 , 0x68 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x71 ,
0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x29 , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 ,
0x5f , 0x70 , 0x62 , 0x2e , 0x43 , 0x6c , 0x6f , 0x73 , 0x65 , 0x50 , 0x75 , 0x62 , 0x6c , 0x69 , 0x73 , 0x68 ,
0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 ,
0x00 , 0x12 , 0x5e , 0x0a , 0x0d , 0x50 , 0x75 , 0x62 , 0x6c , 0x69 , 0x73 , 0x68 , 0x52 , 0x65 , 0x63 , 0x6f ,
0x72 , 0x64 , 0x12 , 0x22 , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f , 0x70 ,
0x62 , 0x2e , 0x50 , 0x75 , 0x62 , 0x6c , 0x69 , 0x73 , 0x68 , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 , 0x64 , 0x52 ,
0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x23 , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 ,
0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x50 , 0x75 , 0x62 , 0x6c , 0x69 , 0x73 , 0x68 , 0x52 , 0x65 , 0x63 ,
0x6f , 0x72 , 0x64 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x00 , 0x28 , 0x01 , 0x30 ,
0x01 , 0x12 , 0x72 , 0x0a , 0x15 , 0x53 , 0x74 , 0x61 , 0x72 , 0x74 , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 ,
0x69 , 0x62 , 0x65 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x2a , 0x2e , 0x6d , 0x65 , 0x73 ,
0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x53 , 0x74 , 0x61 , 0x72 , 0x74 , 0x53 ,
0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x52 ,
0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x2b , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 ,
0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x53 , 0x74 , 0x61 , 0x72 , 0x74 , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 ,
0x72 , 0x69 , 0x62 , 0x65 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f ,
0x6e , 0x73 , 0x65 , 0x22 , 0x00 , 0x12 , 0x72 , 0x0a , 0x15 , 0x43 , 0x6c , 0x6f , 0x73 , 0x65 , 0x53 , 0x75 ,
0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x2a ,
0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x43 , 0x6c ,
0x6f , 0x73 , 0x65 , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x53 , 0x65 , 0x73 , 0x73 ,
0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x2b , 0x2e , 0x6d , 0x65 , 0x73 ,
0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x43 , 0x6c , 0x6f , 0x73 , 0x65 , 0x53 ,
0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x52 ,
0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x00 , 0x12 , 0x64 , 0x0a , 0x0f , 0x53 , 0x75 , 0x62 ,
0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 , 0x64 , 0x12 , 0x24 , 0x2e , 0x6d ,
0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x53 , 0x75 , 0x62 , 0x73 ,
0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 , 0x64 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 ,
0x73 , 0x74 , 0x1a , 0x25 , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f , 0x70 ,
0x62 , 0x2e , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 ,
0x64 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x00 , 0x28 , 0x01 , 0x30 , 0x01 , 0x42 ,
0x60 , 0x0a , 0x12 , 0x73 , 0x65 , 0x61 , 0x77 , 0x65 , 0x65 , 0x64 , 0x66 , 0x73 , 0x2e , 0x6d , 0x71 , 0x5f ,
0x61 , 0x67 , 0x65 , 0x6e , 0x74 , 0x42 , 0x16 , 0x4d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x51 , 0x75 ,
0x65 , 0x75 , 0x65 , 0x41 , 0x67 , 0x65 , 0x6e , 0x74 , 0x50 , 0x72 , 0x6f , 0x74 , 0x6f , 0x5a , 0x32 , 0x67 ,
0x69 , 0x74 , 0x68 , 0x75 , 0x62 , 0x2e , 0x63 , 0x6f , 0x6d , 0x2f , 0x73 , 0x65 , 0x61 , 0x77 , 0x65 , 0x65 ,
0x64 , 0x66 , 0x73 , 0x2f , 0x73 , 0x65 , 0x61 , 0x77 , 0x65 , 0x65 , 0x64 , 0x66 , 0x73 , 0x2f , 0x77 , 0x65 ,
0x65 , 0x64 , 0x2f , 0x70 , 0x62 , 0x2f , 0x6d , 0x71 , 0x5f , 0x61 , 0x67 , 0x65 , 0x6e , 0x74 , 0x5f , 0x70 ,
0x62 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x05 , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 , 0x22 , 0xa1 , 0x04 ,
0x0a , 0x16 , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 ,
0x64 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x53 , 0x0a , 0x04 , 0x69 , 0x6e , 0x69 , 0x74 ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x3f , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 ,
0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x52 ,
0x65 , 0x63 , 0x6f , 0x72 , 0x64 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x2e , 0x49 , 0x6e , 0x69 ,
0x74 , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 , 0x64 ,
0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x52 , 0x04 , 0x69 , 0x6e , 0x69 , 0x74 , 0x12 , 0x21 , 0x0a ,
0x0c , 0x61 , 0x63 , 0x6b , 0x5f , 0x73 , 0x65 , 0x71 , 0x75 , 0x65 , 0x6e , 0x63 , 0x65 , 0x18 , 0x02 , 0x20 ,
0x01 , 0x28 , 0x03 , 0x52 , 0x0b , 0x61 , 0x63 , 0x6b , 0x53 , 0x65 , 0x71 , 0x75 , 0x65 , 0x6e , 0x63 , 0x65 ,
0x12 , 0x17 , 0x0a , 0x07 , 0x61 , 0x63 , 0x6b , 0x5f , 0x6b , 0x65 , 0x79 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 ,
0x0c , 0x52 , 0x06 , 0x61 , 0x63 , 0x6b , 0x4b , 0x65 , 0x79 , 0x1a , 0xf5 , 0x02 , 0x0a , 0x1a , 0x49 , 0x6e ,
0x69 , 0x74 , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 ,
0x64 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x25 , 0x0a , 0x0e , 0x63 , 0x6f , 0x6e , 0x73 ,
0x75 , 0x6d , 0x65 , 0x72 , 0x5f , 0x67 , 0x72 , 0x6f , 0x75 , 0x70 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x0d , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6d , 0x65 , 0x72 , 0x47 , 0x72 , 0x6f , 0x75 , 0x70 , 0x12 ,
0x3b , 0x0a , 0x1a , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6d , 0x65 , 0x72 , 0x5f , 0x67 , 0x72 , 0x6f , 0x75 ,
0x70 , 0x5f , 0x69 , 0x6e , 0x73 , 0x74 , 0x61 , 0x6e , 0x63 , 0x65 , 0x5f , 0x69 , 0x64 , 0x18 , 0x02 , 0x20 ,
0x01 , 0x28 , 0x09 , 0x52 , 0x17 , 0x63 , 0x6f , 0x6e , 0x73 , 0x75 , 0x6d , 0x65 , 0x72 , 0x47 , 0x72 , 0x6f ,
0x75 , 0x70 , 0x49 , 0x6e , 0x73 , 0x74 , 0x61 , 0x6e , 0x63 , 0x65 , 0x49 , 0x64 , 0x12 , 0x26 , 0x0a , 0x05 ,
0x74 , 0x6f , 0x70 , 0x69 , 0x63 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x10 , 0x2e , 0x73 , 0x63 ,
0x68 , 0x65 , 0x6d , 0x61 , 0x5f , 0x70 , 0x62 , 0x2e , 0x54 , 0x6f , 0x70 , 0x69 , 0x63 , 0x52 , 0x05 , 0x74 ,
0x6f , 0x70 , 0x69 , 0x63 , 0x12 , 0x47 , 0x0a , 0x11 , 0x70 , 0x61 , 0x72 , 0x74 , 0x69 , 0x74 , 0x69 , 0x6f ,
0x6e , 0x5f , 0x6f , 0x66 , 0x66 , 0x73 , 0x65 , 0x74 , 0x73 , 0x18 , 0x05 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 ,
0x1a , 0x2e , 0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x5f , 0x70 , 0x62 , 0x2e , 0x50 , 0x61 , 0x72 , 0x74 ,
0x69 , 0x74 , 0x69 , 0x6f , 0x6e , 0x4f , 0x66 , 0x66 , 0x73 , 0x65 , 0x74 , 0x52 , 0x10 , 0x70 , 0x61 , 0x72 ,
0x74 , 0x69 , 0x74 , 0x69 , 0x6f , 0x6e , 0x4f , 0x66 , 0x66 , 0x73 , 0x65 , 0x74 , 0x73 , 0x12 , 0x16 , 0x0a ,
0x06 , 0x66 , 0x69 , 0x6c , 0x74 , 0x65 , 0x72 , 0x18 , 0x06 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x06 , 0x66 ,
0x69 , 0x6c , 0x74 , 0x65 , 0x72 , 0x12 , 0x3a , 0x0a , 0x19 , 0x6d , 0x61 , 0x78 , 0x5f , 0x73 , 0x75 , 0x62 ,
0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x64 , 0x5f , 0x70 , 0x61 , 0x72 , 0x74 , 0x69 , 0x74 , 0x69 , 0x6f ,
0x6e , 0x73 , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x17 , 0x6d , 0x61 , 0x78 , 0x53 , 0x75 , 0x62 ,
0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x64 , 0x50 , 0x61 , 0x72 , 0x74 , 0x69 , 0x74 , 0x69 , 0x6f , 0x6e ,
0x73 , 0x12 , 0x2e , 0x0a , 0x13 , 0x73 , 0x6c , 0x69 , 0x64 , 0x69 , 0x6e , 0x67 , 0x5f , 0x77 , 0x69 , 0x6e ,
0x64 , 0x6f , 0x77 , 0x5f , 0x73 , 0x69 , 0x7a , 0x65 , 0x18 , 0x09 , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x11 ,
0x73 , 0x6c , 0x69 , 0x64 , 0x69 , 0x6e , 0x67 , 0x57 , 0x69 , 0x6e , 0x64 , 0x6f , 0x77 , 0x53 , 0x69 , 0x7a ,
0x65 , 0x22 , 0xd4 , 0x01 , 0x0a , 0x17 , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x52 ,
0x65 , 0x63 , 0x6f , 0x72 , 0x64 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x10 , 0x0a ,
0x03 , 0x6b , 0x65 , 0x79 , 0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x03 , 0x6b , 0x65 , 0x79 , 0x12 ,
0x2c , 0x0a , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x16 ,
0x2e , 0x73 , 0x63 , 0x68 , 0x65 , 0x6d , 0x61 , 0x5f , 0x70 , 0x62 , 0x2e , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 ,
0x64 , 0x56 , 0x61 , 0x6c , 0x75 , 0x65 , 0x52 , 0x05 , 0x76 , 0x61 , 0x6c , 0x75 , 0x65 , 0x12 , 0x13 , 0x0a ,
0x05 , 0x74 , 0x73 , 0x5f , 0x6e , 0x73 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x04 , 0x74 , 0x73 ,
0x4e , 0x73 , 0x12 , 0x14 , 0x0a , 0x05 , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 , 0x18 , 0x05 , 0x20 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x05 , 0x65 , 0x72 , 0x72 , 0x6f , 0x72 , 0x12 , 0x27 , 0x0a , 0x10 , 0x69 , 0x73 , 0x5f , 0x65 ,
0x6e , 0x64 , 0x5f , 0x6f , 0x66 , 0x5f , 0x73 , 0x74 , 0x72 , 0x65 , 0x61 , 0x6d , 0x18 , 0x06 , 0x20 , 0x01 ,
0x28 , 0x08 , 0x52 , 0x0d , 0x69 , 0x73 , 0x45 , 0x6e , 0x64 , 0x4f , 0x66 , 0x53 , 0x74 , 0x72 , 0x65 , 0x61 ,
0x6d , 0x12 , 0x25 , 0x0a , 0x0f , 0x69 , 0x73 , 0x5f , 0x65 , 0x6e , 0x64 , 0x5f , 0x6f , 0x66 , 0x5f , 0x74 ,
0x6f , 0x70 , 0x69 , 0x63 , 0x18 , 0x07 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x0c , 0x69 , 0x73 , 0x45 , 0x6e ,
0x64 , 0x4f , 0x66 , 0x54 , 0x6f , 0x70 , 0x69 , 0x63 , 0x32 , 0xb9 , 0x03 , 0x0a , 0x15 , 0x53 , 0x65 , 0x61 ,
0x77 , 0x65 , 0x65 , 0x64 , 0x4d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x41 , 0x67 , 0x65 ,
0x6e , 0x74 , 0x12 , 0x6c , 0x0a , 0x13 , 0x53 , 0x74 , 0x61 , 0x72 , 0x74 , 0x50 , 0x75 , 0x62 , 0x6c , 0x69 ,
0x73 , 0x68 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x28 , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 ,
0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x53 , 0x74 , 0x61 , 0x72 , 0x74 , 0x50 , 0x75 ,
0x62 , 0x6c , 0x69 , 0x73 , 0x68 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 ,
0x65 , 0x73 , 0x74 , 0x1a , 0x29 , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f ,
0x70 , 0x62 , 0x2e , 0x53 , 0x74 , 0x61 , 0x72 , 0x74 , 0x50 , 0x75 , 0x62 , 0x6c , 0x69 , 0x73 , 0x68 , 0x53 ,
0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x00 ,
0x12 , 0x6c , 0x0a , 0x13 , 0x43 , 0x6c , 0x6f , 0x73 , 0x65 , 0x50 , 0x75 , 0x62 , 0x6c , 0x69 , 0x73 , 0x68 ,
0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x12 , 0x28 , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 ,
0x69 , 0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x43 , 0x6c , 0x6f , 0x73 , 0x65 , 0x50 , 0x75 , 0x62 , 0x6c ,
0x69 , 0x73 , 0x68 , 0x53 , 0x65 , 0x73 , 0x73 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 ,
0x74 , 0x1a , 0x29 , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f , 0x70 , 0x62 ,
0x2e , 0x43 , 0x6c , 0x6f , 0x73 , 0x65 , 0x50 , 0x75 , 0x62 , 0x6c , 0x69 , 0x73 , 0x68 , 0x53 , 0x65 , 0x73 ,
0x73 , 0x69 , 0x6f , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x00 , 0x12 , 0x5e ,
0x0a , 0x0d , 0x50 , 0x75 , 0x62 , 0x6c , 0x69 , 0x73 , 0x68 , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 , 0x64 , 0x12 ,
0x22 , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x50 ,
0x75 , 0x62 , 0x6c , 0x69 , 0x73 , 0x68 , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 , 0x64 , 0x52 , 0x65 , 0x71 , 0x75 ,
0x65 , 0x73 , 0x74 , 0x1a , 0x23 , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f ,
0x70 , 0x62 , 0x2e , 0x50 , 0x75 , 0x62 , 0x6c , 0x69 , 0x73 , 0x68 , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 , 0x64 ,
0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x00 , 0x28 , 0x01 , 0x30 , 0x01 , 0x12 , 0x64 ,
0x0a , 0x0f , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 ,
0x64 , 0x12 , 0x24 , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 , 0x69 , 0x6e , 0x67 , 0x5f , 0x70 , 0x62 ,
0x2e , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 , 0x52 , 0x65 , 0x63 , 0x6f , 0x72 , 0x64 ,
0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x25 , 0x2e , 0x6d , 0x65 , 0x73 , 0x73 , 0x61 , 0x67 ,
0x69 , 0x6e , 0x67 , 0x5f , 0x70 , 0x62 , 0x2e , 0x53 , 0x75 , 0x62 , 0x73 , 0x63 , 0x72 , 0x69 , 0x62 , 0x65 ,
0x52 , 0x65 , 0x63 , 0x6f , 0x72 , 0x64 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x22 , 0x00 ,
0x28 , 0x01 , 0x30 , 0x01 , 0x42 , 0x60 , 0x0a , 0x12 , 0x73 , 0x65 , 0x61 , 0x77 , 0x65 , 0x65 , 0x64 , 0x66 ,
0x73 , 0x2e , 0x6d , 0x71 , 0x5f , 0x61 , 0x67 , 0x65 , 0x6e , 0x74 , 0x42 , 0x16 , 0x4d , 0x65 , 0x73 , 0x73 ,
0x61 , 0x67 , 0x65 , 0x51 , 0x75 , 0x65 , 0x75 , 0x65 , 0x41 , 0x67 , 0x65 , 0x6e , 0x74 , 0x50 , 0x72 , 0x6f ,
0x74 , 0x6f , 0x5a , 0x32 , 0x67 , 0x69 , 0x74 , 0x68 , 0x75 , 0x62 , 0x2e , 0x63 , 0x6f , 0x6d , 0x2f , 0x73 ,
0x65 , 0x61 , 0x77 , 0x65 , 0x65 , 0x64 , 0x66 , 0x73 , 0x2f , 0x73 , 0x65 , 0x61 , 0x77 , 0x65 , 0x65 , 0x64 ,
0x66 , 0x73 , 0x2f , 0x77 , 0x65 , 0x65 , 0x64 , 0x2f , 0x70 , 0x62 , 0x2f , 0x6d , 0x71 , 0x5f , 0x61 , 0x67 ,
0x65 , 0x6e , 0x74 , 0x5f , 0x70 , 0x62 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
}
}
var (
var (
@ -931,49 +747,43 @@ func file_mq_agent_proto_rawDescGZIP() []byte {
return file_mq_agent_proto_rawDescData
return file_mq_agent_proto_rawDescData
}
}
var file_mq_agent_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 12 )
var file_mq_agent_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 9 )
var file_mq_agent_proto_goTypes = [ ] any {
var file_mq_agent_proto_goTypes = [ ] any {
( * StartPublishSessionRequest ) ( nil ) , // 0: messaging_pb.StartPublishSessionRequest
( * StartPublishSessionResponse ) ( nil ) , // 1: messaging_pb.StartPublishSessionResponse
( * ClosePublishSessionRequest ) ( nil ) , // 2: messaging_pb.ClosePublishSessionRequest
( * ClosePublishSessionResponse ) ( nil ) , // 3: messaging_pb.ClosePublishSessionResponse
( * PublishRecordRequest ) ( nil ) , // 4: messaging_pb.PublishRecordRequest
( * PublishRecordResponse ) ( nil ) , // 5: messaging_pb.PublishRecordResponse
( * StartSubscribeSessionRequest ) ( nil ) , // 6: messaging_pb.StartSubscribeSessionRequest
( * StartSubscribeSessionResponse ) ( nil ) , // 7: messaging_pb.StartSubscribeSessionResponse
( * CloseSubscribeSessionRequest ) ( nil ) , // 8: messaging_pb.CloseSubscribeSessionRequest
( * CloseSubscribeSessionResponse ) ( nil ) , // 9: messaging_pb.CloseSubscribeSessionResponse
( * SubscribeRecordRequest ) ( nil ) , // 10: messaging_pb.SubscribeRecordRequest
( * SubscribeRecordResponse ) ( nil ) , // 11: messaging_pb.SubscribeRecordResponse
( * schema_pb . Topic ) ( nil ) , // 12: schema_pb.Topic
( * schema_pb . RecordType ) ( nil ) , // 13: schema_pb.RecordType
( * schema_pb . RecordValue ) ( nil ) , // 14: schema_pb.RecordValue
( * schema_pb . PartitionOffset ) ( nil ) , // 15: schema_pb.PartitionOffset
( * StartPublishSessionRequest ) ( nil ) , // 0: messaging_pb.StartPublishSessionRequest
( * StartPublishSessionResponse ) ( nil ) , // 1: messaging_pb.StartPublishSessionResponse
( * ClosePublishSessionRequest ) ( nil ) , // 2: messaging_pb.ClosePublishSessionRequest
( * ClosePublishSessionResponse ) ( nil ) , // 3: messaging_pb.ClosePublishSessionResponse
( * PublishRecordRequest ) ( nil ) , // 4: messaging_pb.PublishRecordRequest
( * PublishRecordResponse ) ( nil ) , // 5: messaging_pb.PublishRecordResponse
( * SubscribeRecordRequest ) ( nil ) , // 6: messaging_pb.SubscribeRecordRequest
( * SubscribeRecordResponse ) ( nil ) , // 7: messaging_pb.SubscribeRecordResponse
( * SubscribeRecordRequest_InitSubscribeRecordRequest ) ( nil ) , // 8: messaging_pb.SubscribeRecordRequest.InitSubscribeRecordRequest
( * schema_pb . Topic ) ( nil ) , // 9: schema_pb.Topic
( * schema_pb . RecordType ) ( nil ) , // 10: schema_pb.RecordType
( * schema_pb . RecordValue ) ( nil ) , // 11: schema_pb.RecordValue
( * schema_pb . PartitionOffset ) ( nil ) , // 12: schema_pb.PartitionOffset
}
}
var file_mq_agent_proto_depIdxs = [ ] int32 {
var file_mq_agent_proto_depIdxs = [ ] int32 {
12 , // 0: messaging_pb.StartPublishSessionRequest.topic:type_name -> schema_pb.Topic
13 , // 1: messaging_pb.StartPublishSessionRequest.record_type:type_name -> schema_pb.RecordType
14 , // 2: messaging_pb.PublishRecordRequest.value:type_name -> schema_pb.RecordValue
12 , // 3: messaging_pb.StartSubscribeSessionRequest.topic:type_name -> schema_pb.Topic
15 , // 4: messaging_pb.StartSubscribeSessionRequest.partition_offsets:type_name -> schema_pb.PartitionOffset
14 , // 5: messaging_pb.SubscribeRecordResponse.value:type_name -> schema_pb.RecordValue
0 , // 6: messaging_pb.SeaweedMessagingAgent.StartPublishSession:input_type -> messaging_pb.StartPublishSessionRequest
2 , // 7: messaging_pb.SeaweedMessagingAgent.ClosePublishSession:input_type -> messaging_pb.ClosePublishSessionRequest
4 , // 8: messaging_pb.SeaweedMessagingAgent.PublishRecord:input_type -> messaging_pb.PublishRecordRequest
6 , // 9: messaging_pb.SeaweedMessagingAgent.StartSubscribeSession:input_type -> messaging_pb.StartSubscribeSessionRequest
8 , // 10: messaging_pb.SeaweedMessagingAgent.CloseSubscribeSession:input_type -> messaging_pb.CloseSubscribeSessionRequest
10 , // 11: messaging_pb.SeaweedMessagingAgent.SubscribeRecord:input_type -> messaging_pb.SubscribeRecordRequest
1 , // 12: messaging_pb.SeaweedMessagingAgent.StartPublishSession:output_type -> messaging_pb.StartPublishSessionResponse
3 , // 13: messaging_pb.SeaweedMessagingAgent.ClosePublishSession:output_type -> messaging_pb.ClosePublishSessionResponse
5 , // 14: messaging_pb.SeaweedMessagingAgent.PublishRecord:output_type -> messaging_pb.PublishRecordResponse
7 , // 15: messaging_pb.SeaweedMessagingAgent.StartSubscribeSession:output_type -> messaging_pb.StartSubscribeSessionResponse
9 , // 16: messaging_pb.SeaweedMessagingAgent.CloseSubscribeSession:output_type -> messaging_pb.CloseSubscribeSessionResponse
11 , // 17: messaging_pb.SeaweedMessagingAgent.SubscribeRecord:output_type -> messaging_pb.SubscribeRecordResponse
12 , // [12:18] is the sub-list for method output_type
6 , // [6:12] is the sub-list for method input_type
6 , // [6:6] is the sub-list for extension type_name
6 , // [6:6] is the sub-list for extension extendee
0 , // [0:6] is the sub-list for field type_name
9 , // 0: messaging_pb.StartPublishSessionRequest.topic:type_name -> schema_pb.Topic
10 , // 1: messaging_pb.StartPublishSessionRequest.record_type:type_name -> schema_pb.RecordType
11 , // 2: messaging_pb.PublishRecordRequest.value:type_name -> schema_pb.RecordValue
8 , // 3: messaging_pb.SubscribeRecordRequest.init:type_name -> messaging_pb.SubscribeRecordRequest.InitSubscribeRecordRequest
11 , // 4: messaging_pb.SubscribeRecordResponse.value:type_name -> schema_pb.RecordValue
9 , // 5: messaging_pb.SubscribeRecordRequest.InitSubscribeRecordRequest.topic:type_name -> schema_pb.Topic
12 , // 6: messaging_pb.SubscribeRecordRequest.InitSubscribeRecordRequest.partition_offsets:type_name -> schema_pb.PartitionOffset
0 , // 7: messaging_pb.SeaweedMessagingAgent.StartPublishSession:input_type -> messaging_pb.StartPublishSessionRequest
2 , // 8: messaging_pb.SeaweedMessagingAgent.ClosePublishSession:input_type -> messaging_pb.ClosePublishSessionRequest
4 , // 9: messaging_pb.SeaweedMessagingAgent.PublishRecord:input_type -> messaging_pb.PublishRecordRequest
6 , // 10: messaging_pb.SeaweedMessagingAgent.SubscribeRecord:input_type -> messaging_pb.SubscribeRecordRequest
1 , // 11: messaging_pb.SeaweedMessagingAgent.StartPublishSession:output_type -> messaging_pb.StartPublishSessionResponse
3 , // 12: messaging_pb.SeaweedMessagingAgent.ClosePublishSession:output_type -> messaging_pb.ClosePublishSessionResponse
5 , // 13: messaging_pb.SeaweedMessagingAgent.PublishRecord:output_type -> messaging_pb.PublishRecordResponse
7 , // 14: messaging_pb.SeaweedMessagingAgent.SubscribeRecord:output_type -> messaging_pb.SubscribeRecordResponse
11 , // [11:15] is the sub-list for method output_type
7 , // [7:11] is the sub-list for method input_type
7 , // [7:7] is the sub-list for extension type_name
7 , // [7:7] is the sub-list for extension extendee
0 , // [0:7] is the sub-list for field type_name
}
}
func init ( ) { file_mq_agent_proto_init ( ) }
func init ( ) { file_mq_agent_proto_init ( ) }
@ -1055,7 +865,7 @@ func file_mq_agent_proto_init() {
}
}
}
}
file_mq_agent_proto_msgTypes [ 6 ] . Exporter = func ( v any , i int ) any {
file_mq_agent_proto_msgTypes [ 6 ] . Exporter = func ( v any , i int ) any {
switch v := v . ( * StartSubscribeSession Request ) ; i {
switch v := v . ( * SubscribeRecord Request ) ; i {
case 0 :
case 0 :
return & v . state
return & v . state
case 1 :
case 1 :
@ -1067,7 +877,7 @@ func file_mq_agent_proto_init() {
}
}
}
}
file_mq_agent_proto_msgTypes [ 7 ] . Exporter = func ( v any , i int ) any {
file_mq_agent_proto_msgTypes [ 7 ] . Exporter = func ( v any , i int ) any {
switch v := v . ( * StartSubscribeSession Response ) ; i {
switch v := v . ( * SubscribeRecord Response ) ; i {
case 0 :
case 0 :
return & v . state
return & v . state
case 1 :
case 1 :
@ -1079,43 +889,7 @@ func file_mq_agent_proto_init() {
}
}
}
}
file_mq_agent_proto_msgTypes [ 8 ] . Exporter = func ( v any , i int ) any {
file_mq_agent_proto_msgTypes [ 8 ] . Exporter = func ( v any , i int ) any {
switch v := v . ( * CloseSubscribeSessionRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_mq_agent_proto_msgTypes [ 9 ] . Exporter = func ( v any , i int ) any {
switch v := v . ( * CloseSubscribeSessionResponse ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_mq_agent_proto_msgTypes [ 10 ] . Exporter = func ( v any , i int ) any {
switch v := v . ( * SubscribeRecordRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_mq_agent_proto_msgTypes [ 11 ] . Exporter = func ( v any , i int ) any {
switch v := v . ( * SubscribeRecordResponse ) ; i {
switch v := v . ( * SubscribeRecordRequest_InitSubscribeRecordRequest ) ; i {
case 0 :
case 0 :
return & v . state
return & v . state
case 1 :
case 1 :
@ -1133,7 +907,7 @@ func file_mq_agent_proto_init() {
GoPackagePath : reflect . TypeOf ( x { } ) . PkgPath ( ) ,
GoPackagePath : reflect . TypeOf ( x { } ) . PkgPath ( ) ,
RawDescriptor : file_mq_agent_proto_rawDesc ,
RawDescriptor : file_mq_agent_proto_rawDesc ,
NumEnums : 0 ,
NumEnums : 0 ,
NumMessages : 12 ,
NumMessages : 9 ,
NumExtensions : 0 ,
NumExtensions : 0 ,
NumServices : 1 ,
NumServices : 1 ,
} ,
} ,