You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3485 lines
125 KiB

5 years ago
1 year ago
3 years ago
3 years ago
5 years ago
5 years ago
2 years ago
2 years ago
5 years ago
5 years ago
2 years ago
5 years ago
2 years ago
5 years ago
2 years ago
5 years ago
2 years ago
5 years ago
2 years ago
2 years ago
5 years ago
2 years ago
2 years ago
5 years ago
2 years ago
5 years ago
2 years ago
5 years ago
2 years ago
5 years ago
2 years ago
5 years ago
2 years ago
5 years ago
2 years ago
5 years ago
2 years ago
2 years ago
5 years ago
2 years ago
2 years ago
5 years ago
2 years ago
5 years ago
2 years ago
5 years ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
5 years ago
5 years ago
3 years ago
3 years ago
5 years ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
5 years ago
3 years ago
2 years ago
5 years ago
2 years ago
2 years ago
5 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
1 year ago
2 years ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
5 years ago
1 year ago
5 years ago
3 years ago
2 years ago
5 years ago
3 years ago
5 years ago
3 years ago
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.31.0
  4. // protoc v4.24.4
  5. // source: mq.proto
  6. package mq_pb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. // ////////////////////////////////////////////////
  20. type SegmentInfo struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. Segment *Segment `protobuf:"bytes,1,opt,name=segment,proto3" json:"segment,omitempty"`
  25. StartTsNs int64 `protobuf:"varint,2,opt,name=start_ts_ns,json=startTsNs,proto3" json:"start_ts_ns,omitempty"`
  26. Brokers []string `protobuf:"bytes,3,rep,name=brokers,proto3" json:"brokers,omitempty"`
  27. StopTsNs int64 `protobuf:"varint,4,opt,name=stop_ts_ns,json=stopTsNs,proto3" json:"stop_ts_ns,omitempty"`
  28. PreviousSegments []int32 `protobuf:"varint,5,rep,packed,name=previous_segments,json=previousSegments,proto3" json:"previous_segments,omitempty"`
  29. NextSegments []int32 `protobuf:"varint,6,rep,packed,name=next_segments,json=nextSegments,proto3" json:"next_segments,omitempty"`
  30. }
  31. func (x *SegmentInfo) Reset() {
  32. *x = SegmentInfo{}
  33. if protoimpl.UnsafeEnabled {
  34. mi := &file_mq_proto_msgTypes[0]
  35. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  36. ms.StoreMessageInfo(mi)
  37. }
  38. }
  39. func (x *SegmentInfo) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*SegmentInfo) ProtoMessage() {}
  43. func (x *SegmentInfo) ProtoReflect() protoreflect.Message {
  44. mi := &file_mq_proto_msgTypes[0]
  45. if protoimpl.UnsafeEnabled && x != nil {
  46. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  47. if ms.LoadMessageInfo() == nil {
  48. ms.StoreMessageInfo(mi)
  49. }
  50. return ms
  51. }
  52. return mi.MessageOf(x)
  53. }
  54. // Deprecated: Use SegmentInfo.ProtoReflect.Descriptor instead.
  55. func (*SegmentInfo) Descriptor() ([]byte, []int) {
  56. return file_mq_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *SegmentInfo) GetSegment() *Segment {
  59. if x != nil {
  60. return x.Segment
  61. }
  62. return nil
  63. }
  64. func (x *SegmentInfo) GetStartTsNs() int64 {
  65. if x != nil {
  66. return x.StartTsNs
  67. }
  68. return 0
  69. }
  70. func (x *SegmentInfo) GetBrokers() []string {
  71. if x != nil {
  72. return x.Brokers
  73. }
  74. return nil
  75. }
  76. func (x *SegmentInfo) GetStopTsNs() int64 {
  77. if x != nil {
  78. return x.StopTsNs
  79. }
  80. return 0
  81. }
  82. func (x *SegmentInfo) GetPreviousSegments() []int32 {
  83. if x != nil {
  84. return x.PreviousSegments
  85. }
  86. return nil
  87. }
  88. func (x *SegmentInfo) GetNextSegments() []int32 {
  89. if x != nil {
  90. return x.NextSegments
  91. }
  92. return nil
  93. }
  94. type FindBrokerLeaderRequest struct {
  95. state protoimpl.MessageState
  96. sizeCache protoimpl.SizeCache
  97. unknownFields protoimpl.UnknownFields
  98. FilerGroup string `protobuf:"bytes,1,opt,name=filer_group,json=filerGroup,proto3" json:"filer_group,omitempty"`
  99. }
  100. func (x *FindBrokerLeaderRequest) Reset() {
  101. *x = FindBrokerLeaderRequest{}
  102. if protoimpl.UnsafeEnabled {
  103. mi := &file_mq_proto_msgTypes[1]
  104. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  105. ms.StoreMessageInfo(mi)
  106. }
  107. }
  108. func (x *FindBrokerLeaderRequest) String() string {
  109. return protoimpl.X.MessageStringOf(x)
  110. }
  111. func (*FindBrokerLeaderRequest) ProtoMessage() {}
  112. func (x *FindBrokerLeaderRequest) ProtoReflect() protoreflect.Message {
  113. mi := &file_mq_proto_msgTypes[1]
  114. if protoimpl.UnsafeEnabled && x != nil {
  115. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  116. if ms.LoadMessageInfo() == nil {
  117. ms.StoreMessageInfo(mi)
  118. }
  119. return ms
  120. }
  121. return mi.MessageOf(x)
  122. }
  123. // Deprecated: Use FindBrokerLeaderRequest.ProtoReflect.Descriptor instead.
  124. func (*FindBrokerLeaderRequest) Descriptor() ([]byte, []int) {
  125. return file_mq_proto_rawDescGZIP(), []int{1}
  126. }
  127. func (x *FindBrokerLeaderRequest) GetFilerGroup() string {
  128. if x != nil {
  129. return x.FilerGroup
  130. }
  131. return ""
  132. }
  133. type FindBrokerLeaderResponse struct {
  134. state protoimpl.MessageState
  135. sizeCache protoimpl.SizeCache
  136. unknownFields protoimpl.UnknownFields
  137. Broker string `protobuf:"bytes,1,opt,name=broker,proto3" json:"broker,omitempty"`
  138. }
  139. func (x *FindBrokerLeaderResponse) Reset() {
  140. *x = FindBrokerLeaderResponse{}
  141. if protoimpl.UnsafeEnabled {
  142. mi := &file_mq_proto_msgTypes[2]
  143. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  144. ms.StoreMessageInfo(mi)
  145. }
  146. }
  147. func (x *FindBrokerLeaderResponse) String() string {
  148. return protoimpl.X.MessageStringOf(x)
  149. }
  150. func (*FindBrokerLeaderResponse) ProtoMessage() {}
  151. func (x *FindBrokerLeaderResponse) ProtoReflect() protoreflect.Message {
  152. mi := &file_mq_proto_msgTypes[2]
  153. if protoimpl.UnsafeEnabled && x != nil {
  154. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  155. if ms.LoadMessageInfo() == nil {
  156. ms.StoreMessageInfo(mi)
  157. }
  158. return ms
  159. }
  160. return mi.MessageOf(x)
  161. }
  162. // Deprecated: Use FindBrokerLeaderResponse.ProtoReflect.Descriptor instead.
  163. func (*FindBrokerLeaderResponse) Descriptor() ([]byte, []int) {
  164. return file_mq_proto_rawDescGZIP(), []int{2}
  165. }
  166. func (x *FindBrokerLeaderResponse) GetBroker() string {
  167. if x != nil {
  168. return x.Broker
  169. }
  170. return ""
  171. }
  172. type Topic struct {
  173. state protoimpl.MessageState
  174. sizeCache protoimpl.SizeCache
  175. unknownFields protoimpl.UnknownFields
  176. Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
  177. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  178. }
  179. func (x *Topic) Reset() {
  180. *x = Topic{}
  181. if protoimpl.UnsafeEnabled {
  182. mi := &file_mq_proto_msgTypes[3]
  183. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  184. ms.StoreMessageInfo(mi)
  185. }
  186. }
  187. func (x *Topic) String() string {
  188. return protoimpl.X.MessageStringOf(x)
  189. }
  190. func (*Topic) ProtoMessage() {}
  191. func (x *Topic) ProtoReflect() protoreflect.Message {
  192. mi := &file_mq_proto_msgTypes[3]
  193. if protoimpl.UnsafeEnabled && x != nil {
  194. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  195. if ms.LoadMessageInfo() == nil {
  196. ms.StoreMessageInfo(mi)
  197. }
  198. return ms
  199. }
  200. return mi.MessageOf(x)
  201. }
  202. // Deprecated: Use Topic.ProtoReflect.Descriptor instead.
  203. func (*Topic) Descriptor() ([]byte, []int) {
  204. return file_mq_proto_rawDescGZIP(), []int{3}
  205. }
  206. func (x *Topic) GetNamespace() string {
  207. if x != nil {
  208. return x.Namespace
  209. }
  210. return ""
  211. }
  212. func (x *Topic) GetName() string {
  213. if x != nil {
  214. return x.Name
  215. }
  216. return ""
  217. }
  218. type Partition struct {
  219. state protoimpl.MessageState
  220. sizeCache protoimpl.SizeCache
  221. unknownFields protoimpl.UnknownFields
  222. RingSize int32 `protobuf:"varint,1,opt,name=ring_size,json=ringSize,proto3" json:"ring_size,omitempty"`
  223. RangeStart int32 `protobuf:"varint,2,opt,name=range_start,json=rangeStart,proto3" json:"range_start,omitempty"`
  224. RangeStop int32 `protobuf:"varint,3,opt,name=range_stop,json=rangeStop,proto3" json:"range_stop,omitempty"`
  225. }
  226. func (x *Partition) Reset() {
  227. *x = Partition{}
  228. if protoimpl.UnsafeEnabled {
  229. mi := &file_mq_proto_msgTypes[4]
  230. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  231. ms.StoreMessageInfo(mi)
  232. }
  233. }
  234. func (x *Partition) String() string {
  235. return protoimpl.X.MessageStringOf(x)
  236. }
  237. func (*Partition) ProtoMessage() {}
  238. func (x *Partition) ProtoReflect() protoreflect.Message {
  239. mi := &file_mq_proto_msgTypes[4]
  240. if protoimpl.UnsafeEnabled && x != nil {
  241. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  242. if ms.LoadMessageInfo() == nil {
  243. ms.StoreMessageInfo(mi)
  244. }
  245. return ms
  246. }
  247. return mi.MessageOf(x)
  248. }
  249. // Deprecated: Use Partition.ProtoReflect.Descriptor instead.
  250. func (*Partition) Descriptor() ([]byte, []int) {
  251. return file_mq_proto_rawDescGZIP(), []int{4}
  252. }
  253. func (x *Partition) GetRingSize() int32 {
  254. if x != nil {
  255. return x.RingSize
  256. }
  257. return 0
  258. }
  259. func (x *Partition) GetRangeStart() int32 {
  260. if x != nil {
  261. return x.RangeStart
  262. }
  263. return 0
  264. }
  265. func (x *Partition) GetRangeStop() int32 {
  266. if x != nil {
  267. return x.RangeStop
  268. }
  269. return 0
  270. }
  271. type Segment struct {
  272. state protoimpl.MessageState
  273. sizeCache protoimpl.SizeCache
  274. unknownFields protoimpl.UnknownFields
  275. Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
  276. Topic string `protobuf:"bytes,2,opt,name=topic,proto3" json:"topic,omitempty"`
  277. Id int32 `protobuf:"varint,3,opt,name=id,proto3" json:"id,omitempty"`
  278. Partition *Partition `protobuf:"bytes,4,opt,name=partition,proto3" json:"partition,omitempty"`
  279. }
  280. func (x *Segment) Reset() {
  281. *x = Segment{}
  282. if protoimpl.UnsafeEnabled {
  283. mi := &file_mq_proto_msgTypes[5]
  284. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  285. ms.StoreMessageInfo(mi)
  286. }
  287. }
  288. func (x *Segment) String() string {
  289. return protoimpl.X.MessageStringOf(x)
  290. }
  291. func (*Segment) ProtoMessage() {}
  292. func (x *Segment) ProtoReflect() protoreflect.Message {
  293. mi := &file_mq_proto_msgTypes[5]
  294. if protoimpl.UnsafeEnabled && x != nil {
  295. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  296. if ms.LoadMessageInfo() == nil {
  297. ms.StoreMessageInfo(mi)
  298. }
  299. return ms
  300. }
  301. return mi.MessageOf(x)
  302. }
  303. // Deprecated: Use Segment.ProtoReflect.Descriptor instead.
  304. func (*Segment) Descriptor() ([]byte, []int) {
  305. return file_mq_proto_rawDescGZIP(), []int{5}
  306. }
  307. func (x *Segment) GetNamespace() string {
  308. if x != nil {
  309. return x.Namespace
  310. }
  311. return ""
  312. }
  313. func (x *Segment) GetTopic() string {
  314. if x != nil {
  315. return x.Topic
  316. }
  317. return ""
  318. }
  319. func (x *Segment) GetId() int32 {
  320. if x != nil {
  321. return x.Id
  322. }
  323. return 0
  324. }
  325. func (x *Segment) GetPartition() *Partition {
  326. if x != nil {
  327. return x.Partition
  328. }
  329. return nil
  330. }
  331. type AssignSegmentBrokersRequest struct {
  332. state protoimpl.MessageState
  333. sizeCache protoimpl.SizeCache
  334. unknownFields protoimpl.UnknownFields
  335. Segment *Segment `protobuf:"bytes,1,opt,name=segment,proto3" json:"segment,omitempty"`
  336. }
  337. func (x *AssignSegmentBrokersRequest) Reset() {
  338. *x = AssignSegmentBrokersRequest{}
  339. if protoimpl.UnsafeEnabled {
  340. mi := &file_mq_proto_msgTypes[6]
  341. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  342. ms.StoreMessageInfo(mi)
  343. }
  344. }
  345. func (x *AssignSegmentBrokersRequest) String() string {
  346. return protoimpl.X.MessageStringOf(x)
  347. }
  348. func (*AssignSegmentBrokersRequest) ProtoMessage() {}
  349. func (x *AssignSegmentBrokersRequest) ProtoReflect() protoreflect.Message {
  350. mi := &file_mq_proto_msgTypes[6]
  351. if protoimpl.UnsafeEnabled && x != nil {
  352. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  353. if ms.LoadMessageInfo() == nil {
  354. ms.StoreMessageInfo(mi)
  355. }
  356. return ms
  357. }
  358. return mi.MessageOf(x)
  359. }
  360. // Deprecated: Use AssignSegmentBrokersRequest.ProtoReflect.Descriptor instead.
  361. func (*AssignSegmentBrokersRequest) Descriptor() ([]byte, []int) {
  362. return file_mq_proto_rawDescGZIP(), []int{6}
  363. }
  364. func (x *AssignSegmentBrokersRequest) GetSegment() *Segment {
  365. if x != nil {
  366. return x.Segment
  367. }
  368. return nil
  369. }
  370. type AssignSegmentBrokersResponse struct {
  371. state protoimpl.MessageState
  372. sizeCache protoimpl.SizeCache
  373. unknownFields protoimpl.UnknownFields
  374. Brokers []string `protobuf:"bytes,1,rep,name=brokers,proto3" json:"brokers,omitempty"`
  375. }
  376. func (x *AssignSegmentBrokersResponse) Reset() {
  377. *x = AssignSegmentBrokersResponse{}
  378. if protoimpl.UnsafeEnabled {
  379. mi := &file_mq_proto_msgTypes[7]
  380. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  381. ms.StoreMessageInfo(mi)
  382. }
  383. }
  384. func (x *AssignSegmentBrokersResponse) String() string {
  385. return protoimpl.X.MessageStringOf(x)
  386. }
  387. func (*AssignSegmentBrokersResponse) ProtoMessage() {}
  388. func (x *AssignSegmentBrokersResponse) ProtoReflect() protoreflect.Message {
  389. mi := &file_mq_proto_msgTypes[7]
  390. if protoimpl.UnsafeEnabled && x != nil {
  391. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  392. if ms.LoadMessageInfo() == nil {
  393. ms.StoreMessageInfo(mi)
  394. }
  395. return ms
  396. }
  397. return mi.MessageOf(x)
  398. }
  399. // Deprecated: Use AssignSegmentBrokersResponse.ProtoReflect.Descriptor instead.
  400. func (*AssignSegmentBrokersResponse) Descriptor() ([]byte, []int) {
  401. return file_mq_proto_rawDescGZIP(), []int{7}
  402. }
  403. func (x *AssignSegmentBrokersResponse) GetBrokers() []string {
  404. if x != nil {
  405. return x.Brokers
  406. }
  407. return nil
  408. }
  409. type CheckSegmentStatusRequest struct {
  410. state protoimpl.MessageState
  411. sizeCache protoimpl.SizeCache
  412. unknownFields protoimpl.UnknownFields
  413. Segment *Segment `protobuf:"bytes,1,opt,name=segment,proto3" json:"segment,omitempty"`
  414. }
  415. func (x *CheckSegmentStatusRequest) Reset() {
  416. *x = CheckSegmentStatusRequest{}
  417. if protoimpl.UnsafeEnabled {
  418. mi := &file_mq_proto_msgTypes[8]
  419. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  420. ms.StoreMessageInfo(mi)
  421. }
  422. }
  423. func (x *CheckSegmentStatusRequest) String() string {
  424. return protoimpl.X.MessageStringOf(x)
  425. }
  426. func (*CheckSegmentStatusRequest) ProtoMessage() {}
  427. func (x *CheckSegmentStatusRequest) ProtoReflect() protoreflect.Message {
  428. mi := &file_mq_proto_msgTypes[8]
  429. if protoimpl.UnsafeEnabled && x != nil {
  430. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  431. if ms.LoadMessageInfo() == nil {
  432. ms.StoreMessageInfo(mi)
  433. }
  434. return ms
  435. }
  436. return mi.MessageOf(x)
  437. }
  438. // Deprecated: Use CheckSegmentStatusRequest.ProtoReflect.Descriptor instead.
  439. func (*CheckSegmentStatusRequest) Descriptor() ([]byte, []int) {
  440. return file_mq_proto_rawDescGZIP(), []int{8}
  441. }
  442. func (x *CheckSegmentStatusRequest) GetSegment() *Segment {
  443. if x != nil {
  444. return x.Segment
  445. }
  446. return nil
  447. }
  448. type CheckSegmentStatusResponse struct {
  449. state protoimpl.MessageState
  450. sizeCache protoimpl.SizeCache
  451. unknownFields protoimpl.UnknownFields
  452. IsActive bool `protobuf:"varint,1,opt,name=is_active,json=isActive,proto3" json:"is_active,omitempty"`
  453. }
  454. func (x *CheckSegmentStatusResponse) Reset() {
  455. *x = CheckSegmentStatusResponse{}
  456. if protoimpl.UnsafeEnabled {
  457. mi := &file_mq_proto_msgTypes[9]
  458. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  459. ms.StoreMessageInfo(mi)
  460. }
  461. }
  462. func (x *CheckSegmentStatusResponse) String() string {
  463. return protoimpl.X.MessageStringOf(x)
  464. }
  465. func (*CheckSegmentStatusResponse) ProtoMessage() {}
  466. func (x *CheckSegmentStatusResponse) ProtoReflect() protoreflect.Message {
  467. mi := &file_mq_proto_msgTypes[9]
  468. if protoimpl.UnsafeEnabled && x != nil {
  469. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  470. if ms.LoadMessageInfo() == nil {
  471. ms.StoreMessageInfo(mi)
  472. }
  473. return ms
  474. }
  475. return mi.MessageOf(x)
  476. }
  477. // Deprecated: Use CheckSegmentStatusResponse.ProtoReflect.Descriptor instead.
  478. func (*CheckSegmentStatusResponse) Descriptor() ([]byte, []int) {
  479. return file_mq_proto_rawDescGZIP(), []int{9}
  480. }
  481. func (x *CheckSegmentStatusResponse) GetIsActive() bool {
  482. if x != nil {
  483. return x.IsActive
  484. }
  485. return false
  486. }
  487. type CheckBrokerLoadRequest struct {
  488. state protoimpl.MessageState
  489. sizeCache protoimpl.SizeCache
  490. unknownFields protoimpl.UnknownFields
  491. }
  492. func (x *CheckBrokerLoadRequest) Reset() {
  493. *x = CheckBrokerLoadRequest{}
  494. if protoimpl.UnsafeEnabled {
  495. mi := &file_mq_proto_msgTypes[10]
  496. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  497. ms.StoreMessageInfo(mi)
  498. }
  499. }
  500. func (x *CheckBrokerLoadRequest) String() string {
  501. return protoimpl.X.MessageStringOf(x)
  502. }
  503. func (*CheckBrokerLoadRequest) ProtoMessage() {}
  504. func (x *CheckBrokerLoadRequest) ProtoReflect() protoreflect.Message {
  505. mi := &file_mq_proto_msgTypes[10]
  506. if protoimpl.UnsafeEnabled && x != nil {
  507. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  508. if ms.LoadMessageInfo() == nil {
  509. ms.StoreMessageInfo(mi)
  510. }
  511. return ms
  512. }
  513. return mi.MessageOf(x)
  514. }
  515. // Deprecated: Use CheckBrokerLoadRequest.ProtoReflect.Descriptor instead.
  516. func (*CheckBrokerLoadRequest) Descriptor() ([]byte, []int) {
  517. return file_mq_proto_rawDescGZIP(), []int{10}
  518. }
  519. type CheckBrokerLoadResponse struct {
  520. state protoimpl.MessageState
  521. sizeCache protoimpl.SizeCache
  522. unknownFields protoimpl.UnknownFields
  523. MessageCount int64 `protobuf:"varint,1,opt,name=message_count,json=messageCount,proto3" json:"message_count,omitempty"`
  524. BytesCount int64 `protobuf:"varint,2,opt,name=bytes_count,json=bytesCount,proto3" json:"bytes_count,omitempty"`
  525. }
  526. func (x *CheckBrokerLoadResponse) Reset() {
  527. *x = CheckBrokerLoadResponse{}
  528. if protoimpl.UnsafeEnabled {
  529. mi := &file_mq_proto_msgTypes[11]
  530. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  531. ms.StoreMessageInfo(mi)
  532. }
  533. }
  534. func (x *CheckBrokerLoadResponse) String() string {
  535. return protoimpl.X.MessageStringOf(x)
  536. }
  537. func (*CheckBrokerLoadResponse) ProtoMessage() {}
  538. func (x *CheckBrokerLoadResponse) ProtoReflect() protoreflect.Message {
  539. mi := &file_mq_proto_msgTypes[11]
  540. if protoimpl.UnsafeEnabled && x != nil {
  541. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  542. if ms.LoadMessageInfo() == nil {
  543. ms.StoreMessageInfo(mi)
  544. }
  545. return ms
  546. }
  547. return mi.MessageOf(x)
  548. }
  549. // Deprecated: Use CheckBrokerLoadResponse.ProtoReflect.Descriptor instead.
  550. func (*CheckBrokerLoadResponse) Descriptor() ([]byte, []int) {
  551. return file_mq_proto_rawDescGZIP(), []int{11}
  552. }
  553. func (x *CheckBrokerLoadResponse) GetMessageCount() int64 {
  554. if x != nil {
  555. return x.MessageCount
  556. }
  557. return 0
  558. }
  559. func (x *CheckBrokerLoadResponse) GetBytesCount() int64 {
  560. if x != nil {
  561. return x.BytesCount
  562. }
  563. return 0
  564. }
  565. // ////////////////////////////////////////////////
  566. type BrokerStats struct {
  567. state protoimpl.MessageState
  568. sizeCache protoimpl.SizeCache
  569. unknownFields protoimpl.UnknownFields
  570. CpuUsagePercent int32 `protobuf:"varint,1,opt,name=cpu_usage_percent,json=cpuUsagePercent,proto3" json:"cpu_usage_percent,omitempty"`
  571. Stats map[string]*TopicPartitionStats `protobuf:"bytes,2,rep,name=stats,proto3" json:"stats,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  572. }
  573. func (x *BrokerStats) Reset() {
  574. *x = BrokerStats{}
  575. if protoimpl.UnsafeEnabled {
  576. mi := &file_mq_proto_msgTypes[12]
  577. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  578. ms.StoreMessageInfo(mi)
  579. }
  580. }
  581. func (x *BrokerStats) String() string {
  582. return protoimpl.X.MessageStringOf(x)
  583. }
  584. func (*BrokerStats) ProtoMessage() {}
  585. func (x *BrokerStats) ProtoReflect() protoreflect.Message {
  586. mi := &file_mq_proto_msgTypes[12]
  587. if protoimpl.UnsafeEnabled && x != nil {
  588. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  589. if ms.LoadMessageInfo() == nil {
  590. ms.StoreMessageInfo(mi)
  591. }
  592. return ms
  593. }
  594. return mi.MessageOf(x)
  595. }
  596. // Deprecated: Use BrokerStats.ProtoReflect.Descriptor instead.
  597. func (*BrokerStats) Descriptor() ([]byte, []int) {
  598. return file_mq_proto_rawDescGZIP(), []int{12}
  599. }
  600. func (x *BrokerStats) GetCpuUsagePercent() int32 {
  601. if x != nil {
  602. return x.CpuUsagePercent
  603. }
  604. return 0
  605. }
  606. func (x *BrokerStats) GetStats() map[string]*TopicPartitionStats {
  607. if x != nil {
  608. return x.Stats
  609. }
  610. return nil
  611. }
  612. type TopicPartitionStats struct {
  613. state protoimpl.MessageState
  614. sizeCache protoimpl.SizeCache
  615. unknownFields protoimpl.UnknownFields
  616. Topic *Topic `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"`
  617. Partition *Partition `protobuf:"bytes,2,opt,name=partition,proto3" json:"partition,omitempty"`
  618. ConsumerCount int32 `protobuf:"varint,3,opt,name=consumer_count,json=consumerCount,proto3" json:"consumer_count,omitempty"`
  619. IsLeader bool `protobuf:"varint,4,opt,name=is_leader,json=isLeader,proto3" json:"is_leader,omitempty"`
  620. }
  621. func (x *TopicPartitionStats) Reset() {
  622. *x = TopicPartitionStats{}
  623. if protoimpl.UnsafeEnabled {
  624. mi := &file_mq_proto_msgTypes[13]
  625. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  626. ms.StoreMessageInfo(mi)
  627. }
  628. }
  629. func (x *TopicPartitionStats) String() string {
  630. return protoimpl.X.MessageStringOf(x)
  631. }
  632. func (*TopicPartitionStats) ProtoMessage() {}
  633. func (x *TopicPartitionStats) ProtoReflect() protoreflect.Message {
  634. mi := &file_mq_proto_msgTypes[13]
  635. if protoimpl.UnsafeEnabled && x != nil {
  636. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  637. if ms.LoadMessageInfo() == nil {
  638. ms.StoreMessageInfo(mi)
  639. }
  640. return ms
  641. }
  642. return mi.MessageOf(x)
  643. }
  644. // Deprecated: Use TopicPartitionStats.ProtoReflect.Descriptor instead.
  645. func (*TopicPartitionStats) Descriptor() ([]byte, []int) {
  646. return file_mq_proto_rawDescGZIP(), []int{13}
  647. }
  648. func (x *TopicPartitionStats) GetTopic() *Topic {
  649. if x != nil {
  650. return x.Topic
  651. }
  652. return nil
  653. }
  654. func (x *TopicPartitionStats) GetPartition() *Partition {
  655. if x != nil {
  656. return x.Partition
  657. }
  658. return nil
  659. }
  660. func (x *TopicPartitionStats) GetConsumerCount() int32 {
  661. if x != nil {
  662. return x.ConsumerCount
  663. }
  664. return 0
  665. }
  666. func (x *TopicPartitionStats) GetIsLeader() bool {
  667. if x != nil {
  668. return x.IsLeader
  669. }
  670. return false
  671. }
  672. type ConnectToBalancerRequest struct {
  673. state protoimpl.MessageState
  674. sizeCache protoimpl.SizeCache
  675. unknownFields protoimpl.UnknownFields
  676. // Types that are assignable to Message:
  677. //
  678. // *ConnectToBalancerRequest_Init
  679. // *ConnectToBalancerRequest_Stats
  680. Message isConnectToBalancerRequest_Message `protobuf_oneof:"message"`
  681. }
  682. func (x *ConnectToBalancerRequest) Reset() {
  683. *x = ConnectToBalancerRequest{}
  684. if protoimpl.UnsafeEnabled {
  685. mi := &file_mq_proto_msgTypes[14]
  686. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  687. ms.StoreMessageInfo(mi)
  688. }
  689. }
  690. func (x *ConnectToBalancerRequest) String() string {
  691. return protoimpl.X.MessageStringOf(x)
  692. }
  693. func (*ConnectToBalancerRequest) ProtoMessage() {}
  694. func (x *ConnectToBalancerRequest) ProtoReflect() protoreflect.Message {
  695. mi := &file_mq_proto_msgTypes[14]
  696. if protoimpl.UnsafeEnabled && x != nil {
  697. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  698. if ms.LoadMessageInfo() == nil {
  699. ms.StoreMessageInfo(mi)
  700. }
  701. return ms
  702. }
  703. return mi.MessageOf(x)
  704. }
  705. // Deprecated: Use ConnectToBalancerRequest.ProtoReflect.Descriptor instead.
  706. func (*ConnectToBalancerRequest) Descriptor() ([]byte, []int) {
  707. return file_mq_proto_rawDescGZIP(), []int{14}
  708. }
  709. func (m *ConnectToBalancerRequest) GetMessage() isConnectToBalancerRequest_Message {
  710. if m != nil {
  711. return m.Message
  712. }
  713. return nil
  714. }
  715. func (x *ConnectToBalancerRequest) GetInit() *ConnectToBalancerRequest_InitMessage {
  716. if x, ok := x.GetMessage().(*ConnectToBalancerRequest_Init); ok {
  717. return x.Init
  718. }
  719. return nil
  720. }
  721. func (x *ConnectToBalancerRequest) GetStats() *BrokerStats {
  722. if x, ok := x.GetMessage().(*ConnectToBalancerRequest_Stats); ok {
  723. return x.Stats
  724. }
  725. return nil
  726. }
  727. type isConnectToBalancerRequest_Message interface {
  728. isConnectToBalancerRequest_Message()
  729. }
  730. type ConnectToBalancerRequest_Init struct {
  731. Init *ConnectToBalancerRequest_InitMessage `protobuf:"bytes,1,opt,name=init,proto3,oneof"`
  732. }
  733. type ConnectToBalancerRequest_Stats struct {
  734. Stats *BrokerStats `protobuf:"bytes,2,opt,name=stats,proto3,oneof"`
  735. }
  736. func (*ConnectToBalancerRequest_Init) isConnectToBalancerRequest_Message() {}
  737. func (*ConnectToBalancerRequest_Stats) isConnectToBalancerRequest_Message() {}
  738. type ConnectToBalancerResponse struct {
  739. state protoimpl.MessageState
  740. sizeCache protoimpl.SizeCache
  741. unknownFields protoimpl.UnknownFields
  742. }
  743. func (x *ConnectToBalancerResponse) Reset() {
  744. *x = ConnectToBalancerResponse{}
  745. if protoimpl.UnsafeEnabled {
  746. mi := &file_mq_proto_msgTypes[15]
  747. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  748. ms.StoreMessageInfo(mi)
  749. }
  750. }
  751. func (x *ConnectToBalancerResponse) String() string {
  752. return protoimpl.X.MessageStringOf(x)
  753. }
  754. func (*ConnectToBalancerResponse) ProtoMessage() {}
  755. func (x *ConnectToBalancerResponse) ProtoReflect() protoreflect.Message {
  756. mi := &file_mq_proto_msgTypes[15]
  757. if protoimpl.UnsafeEnabled && x != nil {
  758. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  759. if ms.LoadMessageInfo() == nil {
  760. ms.StoreMessageInfo(mi)
  761. }
  762. return ms
  763. }
  764. return mi.MessageOf(x)
  765. }
  766. // Deprecated: Use ConnectToBalancerResponse.ProtoReflect.Descriptor instead.
  767. func (*ConnectToBalancerResponse) Descriptor() ([]byte, []int) {
  768. return file_mq_proto_rawDescGZIP(), []int{15}
  769. }
  770. // ////////////////////////////////////////////////
  771. type ConfigureTopicRequest struct {
  772. state protoimpl.MessageState
  773. sizeCache protoimpl.SizeCache
  774. unknownFields protoimpl.UnknownFields
  775. Topic *Topic `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"`
  776. PartitionCount int32 `protobuf:"varint,2,opt,name=partition_count,json=partitionCount,proto3" json:"partition_count,omitempty"`
  777. }
  778. func (x *ConfigureTopicRequest) Reset() {
  779. *x = ConfigureTopicRequest{}
  780. if protoimpl.UnsafeEnabled {
  781. mi := &file_mq_proto_msgTypes[16]
  782. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  783. ms.StoreMessageInfo(mi)
  784. }
  785. }
  786. func (x *ConfigureTopicRequest) String() string {
  787. return protoimpl.X.MessageStringOf(x)
  788. }
  789. func (*ConfigureTopicRequest) ProtoMessage() {}
  790. func (x *ConfigureTopicRequest) ProtoReflect() protoreflect.Message {
  791. mi := &file_mq_proto_msgTypes[16]
  792. if protoimpl.UnsafeEnabled && x != nil {
  793. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  794. if ms.LoadMessageInfo() == nil {
  795. ms.StoreMessageInfo(mi)
  796. }
  797. return ms
  798. }
  799. return mi.MessageOf(x)
  800. }
  801. // Deprecated: Use ConfigureTopicRequest.ProtoReflect.Descriptor instead.
  802. func (*ConfigureTopicRequest) Descriptor() ([]byte, []int) {
  803. return file_mq_proto_rawDescGZIP(), []int{16}
  804. }
  805. func (x *ConfigureTopicRequest) GetTopic() *Topic {
  806. if x != nil {
  807. return x.Topic
  808. }
  809. return nil
  810. }
  811. func (x *ConfigureTopicRequest) GetPartitionCount() int32 {
  812. if x != nil {
  813. return x.PartitionCount
  814. }
  815. return 0
  816. }
  817. type ConfigureTopicResponse struct {
  818. state protoimpl.MessageState
  819. sizeCache protoimpl.SizeCache
  820. unknownFields protoimpl.UnknownFields
  821. BrokerPartitionAssignments []*BrokerPartitionAssignment `protobuf:"bytes,2,rep,name=broker_partition_assignments,json=brokerPartitionAssignments,proto3" json:"broker_partition_assignments,omitempty"`
  822. }
  823. func (x *ConfigureTopicResponse) Reset() {
  824. *x = ConfigureTopicResponse{}
  825. if protoimpl.UnsafeEnabled {
  826. mi := &file_mq_proto_msgTypes[17]
  827. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  828. ms.StoreMessageInfo(mi)
  829. }
  830. }
  831. func (x *ConfigureTopicResponse) String() string {
  832. return protoimpl.X.MessageStringOf(x)
  833. }
  834. func (*ConfigureTopicResponse) ProtoMessage() {}
  835. func (x *ConfigureTopicResponse) ProtoReflect() protoreflect.Message {
  836. mi := &file_mq_proto_msgTypes[17]
  837. if protoimpl.UnsafeEnabled && x != nil {
  838. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  839. if ms.LoadMessageInfo() == nil {
  840. ms.StoreMessageInfo(mi)
  841. }
  842. return ms
  843. }
  844. return mi.MessageOf(x)
  845. }
  846. // Deprecated: Use ConfigureTopicResponse.ProtoReflect.Descriptor instead.
  847. func (*ConfigureTopicResponse) Descriptor() ([]byte, []int) {
  848. return file_mq_proto_rawDescGZIP(), []int{17}
  849. }
  850. func (x *ConfigureTopicResponse) GetBrokerPartitionAssignments() []*BrokerPartitionAssignment {
  851. if x != nil {
  852. return x.BrokerPartitionAssignments
  853. }
  854. return nil
  855. }
  856. type DoConfigureTopicRequest struct {
  857. state protoimpl.MessageState
  858. sizeCache protoimpl.SizeCache
  859. unknownFields protoimpl.UnknownFields
  860. Topic *Topic `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"`
  861. Partition *Partition `protobuf:"bytes,2,opt,name=partition,proto3" json:"partition,omitempty"`
  862. }
  863. func (x *DoConfigureTopicRequest) Reset() {
  864. *x = DoConfigureTopicRequest{}
  865. if protoimpl.UnsafeEnabled {
  866. mi := &file_mq_proto_msgTypes[18]
  867. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  868. ms.StoreMessageInfo(mi)
  869. }
  870. }
  871. func (x *DoConfigureTopicRequest) String() string {
  872. return protoimpl.X.MessageStringOf(x)
  873. }
  874. func (*DoConfigureTopicRequest) ProtoMessage() {}
  875. func (x *DoConfigureTopicRequest) ProtoReflect() protoreflect.Message {
  876. mi := &file_mq_proto_msgTypes[18]
  877. if protoimpl.UnsafeEnabled && x != nil {
  878. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  879. if ms.LoadMessageInfo() == nil {
  880. ms.StoreMessageInfo(mi)
  881. }
  882. return ms
  883. }
  884. return mi.MessageOf(x)
  885. }
  886. // Deprecated: Use DoConfigureTopicRequest.ProtoReflect.Descriptor instead.
  887. func (*DoConfigureTopicRequest) Descriptor() ([]byte, []int) {
  888. return file_mq_proto_rawDescGZIP(), []int{18}
  889. }
  890. func (x *DoConfigureTopicRequest) GetTopic() *Topic {
  891. if x != nil {
  892. return x.Topic
  893. }
  894. return nil
  895. }
  896. func (x *DoConfigureTopicRequest) GetPartition() *Partition {
  897. if x != nil {
  898. return x.Partition
  899. }
  900. return nil
  901. }
  902. type DoConfigureTopicResponse struct {
  903. state protoimpl.MessageState
  904. sizeCache protoimpl.SizeCache
  905. unknownFields protoimpl.UnknownFields
  906. }
  907. func (x *DoConfigureTopicResponse) Reset() {
  908. *x = DoConfigureTopicResponse{}
  909. if protoimpl.UnsafeEnabled {
  910. mi := &file_mq_proto_msgTypes[19]
  911. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  912. ms.StoreMessageInfo(mi)
  913. }
  914. }
  915. func (x *DoConfigureTopicResponse) String() string {
  916. return protoimpl.X.MessageStringOf(x)
  917. }
  918. func (*DoConfigureTopicResponse) ProtoMessage() {}
  919. func (x *DoConfigureTopicResponse) ProtoReflect() protoreflect.Message {
  920. mi := &file_mq_proto_msgTypes[19]
  921. if protoimpl.UnsafeEnabled && x != nil {
  922. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  923. if ms.LoadMessageInfo() == nil {
  924. ms.StoreMessageInfo(mi)
  925. }
  926. return ms
  927. }
  928. return mi.MessageOf(x)
  929. }
  930. // Deprecated: Use DoConfigureTopicResponse.ProtoReflect.Descriptor instead.
  931. func (*DoConfigureTopicResponse) Descriptor() ([]byte, []int) {
  932. return file_mq_proto_rawDescGZIP(), []int{19}
  933. }
  934. type ListTopicsRequest struct {
  935. state protoimpl.MessageState
  936. sizeCache protoimpl.SizeCache
  937. unknownFields protoimpl.UnknownFields
  938. }
  939. func (x *ListTopicsRequest) Reset() {
  940. *x = ListTopicsRequest{}
  941. if protoimpl.UnsafeEnabled {
  942. mi := &file_mq_proto_msgTypes[20]
  943. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  944. ms.StoreMessageInfo(mi)
  945. }
  946. }
  947. func (x *ListTopicsRequest) String() string {
  948. return protoimpl.X.MessageStringOf(x)
  949. }
  950. func (*ListTopicsRequest) ProtoMessage() {}
  951. func (x *ListTopicsRequest) ProtoReflect() protoreflect.Message {
  952. mi := &file_mq_proto_msgTypes[20]
  953. if protoimpl.UnsafeEnabled && x != nil {
  954. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  955. if ms.LoadMessageInfo() == nil {
  956. ms.StoreMessageInfo(mi)
  957. }
  958. return ms
  959. }
  960. return mi.MessageOf(x)
  961. }
  962. // Deprecated: Use ListTopicsRequest.ProtoReflect.Descriptor instead.
  963. func (*ListTopicsRequest) Descriptor() ([]byte, []int) {
  964. return file_mq_proto_rawDescGZIP(), []int{20}
  965. }
  966. type ListTopicsResponse struct {
  967. state protoimpl.MessageState
  968. sizeCache protoimpl.SizeCache
  969. unknownFields protoimpl.UnknownFields
  970. Topics []*Topic `protobuf:"bytes,1,rep,name=topics,proto3" json:"topics,omitempty"`
  971. }
  972. func (x *ListTopicsResponse) Reset() {
  973. *x = ListTopicsResponse{}
  974. if protoimpl.UnsafeEnabled {
  975. mi := &file_mq_proto_msgTypes[21]
  976. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  977. ms.StoreMessageInfo(mi)
  978. }
  979. }
  980. func (x *ListTopicsResponse) String() string {
  981. return protoimpl.X.MessageStringOf(x)
  982. }
  983. func (*ListTopicsResponse) ProtoMessage() {}
  984. func (x *ListTopicsResponse) ProtoReflect() protoreflect.Message {
  985. mi := &file_mq_proto_msgTypes[21]
  986. if protoimpl.UnsafeEnabled && x != nil {
  987. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  988. if ms.LoadMessageInfo() == nil {
  989. ms.StoreMessageInfo(mi)
  990. }
  991. return ms
  992. }
  993. return mi.MessageOf(x)
  994. }
  995. // Deprecated: Use ListTopicsResponse.ProtoReflect.Descriptor instead.
  996. func (*ListTopicsResponse) Descriptor() ([]byte, []int) {
  997. return file_mq_proto_rawDescGZIP(), []int{21}
  998. }
  999. func (x *ListTopicsResponse) GetTopics() []*Topic {
  1000. if x != nil {
  1001. return x.Topics
  1002. }
  1003. return nil
  1004. }
  1005. type LookupTopicBrokersRequest struct {
  1006. state protoimpl.MessageState
  1007. sizeCache protoimpl.SizeCache
  1008. unknownFields protoimpl.UnknownFields
  1009. Topic *Topic `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"`
  1010. IsForPublish bool `protobuf:"varint,2,opt,name=is_for_publish,json=isForPublish,proto3" json:"is_for_publish,omitempty"`
  1011. }
  1012. func (x *LookupTopicBrokersRequest) Reset() {
  1013. *x = LookupTopicBrokersRequest{}
  1014. if protoimpl.UnsafeEnabled {
  1015. mi := &file_mq_proto_msgTypes[22]
  1016. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1017. ms.StoreMessageInfo(mi)
  1018. }
  1019. }
  1020. func (x *LookupTopicBrokersRequest) String() string {
  1021. return protoimpl.X.MessageStringOf(x)
  1022. }
  1023. func (*LookupTopicBrokersRequest) ProtoMessage() {}
  1024. func (x *LookupTopicBrokersRequest) ProtoReflect() protoreflect.Message {
  1025. mi := &file_mq_proto_msgTypes[22]
  1026. if protoimpl.UnsafeEnabled && x != nil {
  1027. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1028. if ms.LoadMessageInfo() == nil {
  1029. ms.StoreMessageInfo(mi)
  1030. }
  1031. return ms
  1032. }
  1033. return mi.MessageOf(x)
  1034. }
  1035. // Deprecated: Use LookupTopicBrokersRequest.ProtoReflect.Descriptor instead.
  1036. func (*LookupTopicBrokersRequest) Descriptor() ([]byte, []int) {
  1037. return file_mq_proto_rawDescGZIP(), []int{22}
  1038. }
  1039. func (x *LookupTopicBrokersRequest) GetTopic() *Topic {
  1040. if x != nil {
  1041. return x.Topic
  1042. }
  1043. return nil
  1044. }
  1045. func (x *LookupTopicBrokersRequest) GetIsForPublish() bool {
  1046. if x != nil {
  1047. return x.IsForPublish
  1048. }
  1049. return false
  1050. }
  1051. type LookupTopicBrokersResponse struct {
  1052. state protoimpl.MessageState
  1053. sizeCache protoimpl.SizeCache
  1054. unknownFields protoimpl.UnknownFields
  1055. Topic *Topic `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"`
  1056. BrokerPartitionAssignments []*BrokerPartitionAssignment `protobuf:"bytes,2,rep,name=broker_partition_assignments,json=brokerPartitionAssignments,proto3" json:"broker_partition_assignments,omitempty"`
  1057. }
  1058. func (x *LookupTopicBrokersResponse) Reset() {
  1059. *x = LookupTopicBrokersResponse{}
  1060. if protoimpl.UnsafeEnabled {
  1061. mi := &file_mq_proto_msgTypes[23]
  1062. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1063. ms.StoreMessageInfo(mi)
  1064. }
  1065. }
  1066. func (x *LookupTopicBrokersResponse) String() string {
  1067. return protoimpl.X.MessageStringOf(x)
  1068. }
  1069. func (*LookupTopicBrokersResponse) ProtoMessage() {}
  1070. func (x *LookupTopicBrokersResponse) ProtoReflect() protoreflect.Message {
  1071. mi := &file_mq_proto_msgTypes[23]
  1072. if protoimpl.UnsafeEnabled && x != nil {
  1073. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1074. if ms.LoadMessageInfo() == nil {
  1075. ms.StoreMessageInfo(mi)
  1076. }
  1077. return ms
  1078. }
  1079. return mi.MessageOf(x)
  1080. }
  1081. // Deprecated: Use LookupTopicBrokersResponse.ProtoReflect.Descriptor instead.
  1082. func (*LookupTopicBrokersResponse) Descriptor() ([]byte, []int) {
  1083. return file_mq_proto_rawDescGZIP(), []int{23}
  1084. }
  1085. func (x *LookupTopicBrokersResponse) GetTopic() *Topic {
  1086. if x != nil {
  1087. return x.Topic
  1088. }
  1089. return nil
  1090. }
  1091. func (x *LookupTopicBrokersResponse) GetBrokerPartitionAssignments() []*BrokerPartitionAssignment {
  1092. if x != nil {
  1093. return x.BrokerPartitionAssignments
  1094. }
  1095. return nil
  1096. }
  1097. type BrokerPartitionAssignment struct {
  1098. state protoimpl.MessageState
  1099. sizeCache protoimpl.SizeCache
  1100. unknownFields protoimpl.UnknownFields
  1101. Partition *Partition `protobuf:"bytes,1,opt,name=partition,proto3" json:"partition,omitempty"`
  1102. LeaderBroker string `protobuf:"bytes,2,opt,name=leader_broker,json=leaderBroker,proto3" json:"leader_broker,omitempty"`
  1103. FollowerBrokers []string `protobuf:"bytes,3,rep,name=follower_brokers,json=followerBrokers,proto3" json:"follower_brokers,omitempty"`
  1104. }
  1105. func (x *BrokerPartitionAssignment) Reset() {
  1106. *x = BrokerPartitionAssignment{}
  1107. if protoimpl.UnsafeEnabled {
  1108. mi := &file_mq_proto_msgTypes[24]
  1109. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1110. ms.StoreMessageInfo(mi)
  1111. }
  1112. }
  1113. func (x *BrokerPartitionAssignment) String() string {
  1114. return protoimpl.X.MessageStringOf(x)
  1115. }
  1116. func (*BrokerPartitionAssignment) ProtoMessage() {}
  1117. func (x *BrokerPartitionAssignment) ProtoReflect() protoreflect.Message {
  1118. mi := &file_mq_proto_msgTypes[24]
  1119. if protoimpl.UnsafeEnabled && x != nil {
  1120. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1121. if ms.LoadMessageInfo() == nil {
  1122. ms.StoreMessageInfo(mi)
  1123. }
  1124. return ms
  1125. }
  1126. return mi.MessageOf(x)
  1127. }
  1128. // Deprecated: Use BrokerPartitionAssignment.ProtoReflect.Descriptor instead.
  1129. func (*BrokerPartitionAssignment) Descriptor() ([]byte, []int) {
  1130. return file_mq_proto_rawDescGZIP(), []int{24}
  1131. }
  1132. func (x *BrokerPartitionAssignment) GetPartition() *Partition {
  1133. if x != nil {
  1134. return x.Partition
  1135. }
  1136. return nil
  1137. }
  1138. func (x *BrokerPartitionAssignment) GetLeaderBroker() string {
  1139. if x != nil {
  1140. return x.LeaderBroker
  1141. }
  1142. return ""
  1143. }
  1144. func (x *BrokerPartitionAssignment) GetFollowerBrokers() []string {
  1145. if x != nil {
  1146. return x.FollowerBrokers
  1147. }
  1148. return nil
  1149. }
  1150. type RequestTopicPartitionsRequest struct {
  1151. state protoimpl.MessageState
  1152. sizeCache protoimpl.SizeCache
  1153. unknownFields protoimpl.UnknownFields
  1154. Topic *Topic `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"`
  1155. PartitionCount int32 `protobuf:"varint,2,opt,name=partition_count,json=partitionCount,proto3" json:"partition_count,omitempty"`
  1156. }
  1157. func (x *RequestTopicPartitionsRequest) Reset() {
  1158. *x = RequestTopicPartitionsRequest{}
  1159. if protoimpl.UnsafeEnabled {
  1160. mi := &file_mq_proto_msgTypes[25]
  1161. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1162. ms.StoreMessageInfo(mi)
  1163. }
  1164. }
  1165. func (x *RequestTopicPartitionsRequest) String() string {
  1166. return protoimpl.X.MessageStringOf(x)
  1167. }
  1168. func (*RequestTopicPartitionsRequest) ProtoMessage() {}
  1169. func (x *RequestTopicPartitionsRequest) ProtoReflect() protoreflect.Message {
  1170. mi := &file_mq_proto_msgTypes[25]
  1171. if protoimpl.UnsafeEnabled && x != nil {
  1172. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1173. if ms.LoadMessageInfo() == nil {
  1174. ms.StoreMessageInfo(mi)
  1175. }
  1176. return ms
  1177. }
  1178. return mi.MessageOf(x)
  1179. }
  1180. // Deprecated: Use RequestTopicPartitionsRequest.ProtoReflect.Descriptor instead.
  1181. func (*RequestTopicPartitionsRequest) Descriptor() ([]byte, []int) {
  1182. return file_mq_proto_rawDescGZIP(), []int{25}
  1183. }
  1184. func (x *RequestTopicPartitionsRequest) GetTopic() *Topic {
  1185. if x != nil {
  1186. return x.Topic
  1187. }
  1188. return nil
  1189. }
  1190. func (x *RequestTopicPartitionsRequest) GetPartitionCount() int32 {
  1191. if x != nil {
  1192. return x.PartitionCount
  1193. }
  1194. return 0
  1195. }
  1196. type RequestTopicPartitionsResponse struct {
  1197. state protoimpl.MessageState
  1198. sizeCache protoimpl.SizeCache
  1199. unknownFields protoimpl.UnknownFields
  1200. BrokerPartitionAssignments []*BrokerPartitionAssignment `protobuf:"bytes,1,rep,name=broker_partition_assignments,json=brokerPartitionAssignments,proto3" json:"broker_partition_assignments,omitempty"`
  1201. }
  1202. func (x *RequestTopicPartitionsResponse) Reset() {
  1203. *x = RequestTopicPartitionsResponse{}
  1204. if protoimpl.UnsafeEnabled {
  1205. mi := &file_mq_proto_msgTypes[26]
  1206. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1207. ms.StoreMessageInfo(mi)
  1208. }
  1209. }
  1210. func (x *RequestTopicPartitionsResponse) String() string {
  1211. return protoimpl.X.MessageStringOf(x)
  1212. }
  1213. func (*RequestTopicPartitionsResponse) ProtoMessage() {}
  1214. func (x *RequestTopicPartitionsResponse) ProtoReflect() protoreflect.Message {
  1215. mi := &file_mq_proto_msgTypes[26]
  1216. if protoimpl.UnsafeEnabled && x != nil {
  1217. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1218. if ms.LoadMessageInfo() == nil {
  1219. ms.StoreMessageInfo(mi)
  1220. }
  1221. return ms
  1222. }
  1223. return mi.MessageOf(x)
  1224. }
  1225. // Deprecated: Use RequestTopicPartitionsResponse.ProtoReflect.Descriptor instead.
  1226. func (*RequestTopicPartitionsResponse) Descriptor() ([]byte, []int) {
  1227. return file_mq_proto_rawDescGZIP(), []int{26}
  1228. }
  1229. func (x *RequestTopicPartitionsResponse) GetBrokerPartitionAssignments() []*BrokerPartitionAssignment {
  1230. if x != nil {
  1231. return x.BrokerPartitionAssignments
  1232. }
  1233. return nil
  1234. }
  1235. type AssignTopicPartitionsRequest struct {
  1236. state protoimpl.MessageState
  1237. sizeCache protoimpl.SizeCache
  1238. unknownFields protoimpl.UnknownFields
  1239. Topic *Topic `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"`
  1240. BrokerPartitionAssignments []*BrokerPartitionAssignment `protobuf:"bytes,2,rep,name=broker_partition_assignments,json=brokerPartitionAssignments,proto3" json:"broker_partition_assignments,omitempty"`
  1241. IsLeader bool `protobuf:"varint,3,opt,name=is_leader,json=isLeader,proto3" json:"is_leader,omitempty"`
  1242. }
  1243. func (x *AssignTopicPartitionsRequest) Reset() {
  1244. *x = AssignTopicPartitionsRequest{}
  1245. if protoimpl.UnsafeEnabled {
  1246. mi := &file_mq_proto_msgTypes[27]
  1247. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1248. ms.StoreMessageInfo(mi)
  1249. }
  1250. }
  1251. func (x *AssignTopicPartitionsRequest) String() string {
  1252. return protoimpl.X.MessageStringOf(x)
  1253. }
  1254. func (*AssignTopicPartitionsRequest) ProtoMessage() {}
  1255. func (x *AssignTopicPartitionsRequest) ProtoReflect() protoreflect.Message {
  1256. mi := &file_mq_proto_msgTypes[27]
  1257. if protoimpl.UnsafeEnabled && x != nil {
  1258. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1259. if ms.LoadMessageInfo() == nil {
  1260. ms.StoreMessageInfo(mi)
  1261. }
  1262. return ms
  1263. }
  1264. return mi.MessageOf(x)
  1265. }
  1266. // Deprecated: Use AssignTopicPartitionsRequest.ProtoReflect.Descriptor instead.
  1267. func (*AssignTopicPartitionsRequest) Descriptor() ([]byte, []int) {
  1268. return file_mq_proto_rawDescGZIP(), []int{27}
  1269. }
  1270. func (x *AssignTopicPartitionsRequest) GetTopic() *Topic {
  1271. if x != nil {
  1272. return x.Topic
  1273. }
  1274. return nil
  1275. }
  1276. func (x *AssignTopicPartitionsRequest) GetBrokerPartitionAssignments() []*BrokerPartitionAssignment {
  1277. if x != nil {
  1278. return x.BrokerPartitionAssignments
  1279. }
  1280. return nil
  1281. }
  1282. func (x *AssignTopicPartitionsRequest) GetIsLeader() bool {
  1283. if x != nil {
  1284. return x.IsLeader
  1285. }
  1286. return false
  1287. }
  1288. type AssignTopicPartitionsResponse struct {
  1289. state protoimpl.MessageState
  1290. sizeCache protoimpl.SizeCache
  1291. unknownFields protoimpl.UnknownFields
  1292. }
  1293. func (x *AssignTopicPartitionsResponse) Reset() {
  1294. *x = AssignTopicPartitionsResponse{}
  1295. if protoimpl.UnsafeEnabled {
  1296. mi := &file_mq_proto_msgTypes[28]
  1297. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1298. ms.StoreMessageInfo(mi)
  1299. }
  1300. }
  1301. func (x *AssignTopicPartitionsResponse) String() string {
  1302. return protoimpl.X.MessageStringOf(x)
  1303. }
  1304. func (*AssignTopicPartitionsResponse) ProtoMessage() {}
  1305. func (x *AssignTopicPartitionsResponse) ProtoReflect() protoreflect.Message {
  1306. mi := &file_mq_proto_msgTypes[28]
  1307. if protoimpl.UnsafeEnabled && x != nil {
  1308. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1309. if ms.LoadMessageInfo() == nil {
  1310. ms.StoreMessageInfo(mi)
  1311. }
  1312. return ms
  1313. }
  1314. return mi.MessageOf(x)
  1315. }
  1316. // Deprecated: Use AssignTopicPartitionsResponse.ProtoReflect.Descriptor instead.
  1317. func (*AssignTopicPartitionsResponse) Descriptor() ([]byte, []int) {
  1318. return file_mq_proto_rawDescGZIP(), []int{28}
  1319. }
  1320. type CheckTopicPartitionsStatusRequest struct {
  1321. state protoimpl.MessageState
  1322. sizeCache protoimpl.SizeCache
  1323. unknownFields protoimpl.UnknownFields
  1324. Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
  1325. Topic string `protobuf:"bytes,2,opt,name=topic,proto3" json:"topic,omitempty"`
  1326. BrokerPartitionAssignment *BrokerPartitionAssignment `protobuf:"bytes,3,opt,name=broker_partition_assignment,json=brokerPartitionAssignment,proto3" json:"broker_partition_assignment,omitempty"`
  1327. ShouldCancelIfNotMatch bool `protobuf:"varint,4,opt,name=should_cancel_if_not_match,json=shouldCancelIfNotMatch,proto3" json:"should_cancel_if_not_match,omitempty"`
  1328. }
  1329. func (x *CheckTopicPartitionsStatusRequest) Reset() {
  1330. *x = CheckTopicPartitionsStatusRequest{}
  1331. if protoimpl.UnsafeEnabled {
  1332. mi := &file_mq_proto_msgTypes[29]
  1333. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1334. ms.StoreMessageInfo(mi)
  1335. }
  1336. }
  1337. func (x *CheckTopicPartitionsStatusRequest) String() string {
  1338. return protoimpl.X.MessageStringOf(x)
  1339. }
  1340. func (*CheckTopicPartitionsStatusRequest) ProtoMessage() {}
  1341. func (x *CheckTopicPartitionsStatusRequest) ProtoReflect() protoreflect.Message {
  1342. mi := &file_mq_proto_msgTypes[29]
  1343. if protoimpl.UnsafeEnabled && x != nil {
  1344. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1345. if ms.LoadMessageInfo() == nil {
  1346. ms.StoreMessageInfo(mi)
  1347. }
  1348. return ms
  1349. }
  1350. return mi.MessageOf(x)
  1351. }
  1352. // Deprecated: Use CheckTopicPartitionsStatusRequest.ProtoReflect.Descriptor instead.
  1353. func (*CheckTopicPartitionsStatusRequest) Descriptor() ([]byte, []int) {
  1354. return file_mq_proto_rawDescGZIP(), []int{29}
  1355. }
  1356. func (x *CheckTopicPartitionsStatusRequest) GetNamespace() string {
  1357. if x != nil {
  1358. return x.Namespace
  1359. }
  1360. return ""
  1361. }
  1362. func (x *CheckTopicPartitionsStatusRequest) GetTopic() string {
  1363. if x != nil {
  1364. return x.Topic
  1365. }
  1366. return ""
  1367. }
  1368. func (x *CheckTopicPartitionsStatusRequest) GetBrokerPartitionAssignment() *BrokerPartitionAssignment {
  1369. if x != nil {
  1370. return x.BrokerPartitionAssignment
  1371. }
  1372. return nil
  1373. }
  1374. func (x *CheckTopicPartitionsStatusRequest) GetShouldCancelIfNotMatch() bool {
  1375. if x != nil {
  1376. return x.ShouldCancelIfNotMatch
  1377. }
  1378. return false
  1379. }
  1380. type CheckTopicPartitionsStatusResponse struct {
  1381. state protoimpl.MessageState
  1382. sizeCache protoimpl.SizeCache
  1383. unknownFields protoimpl.UnknownFields
  1384. BrokerPartitionAssignments []*BrokerPartitionAssignment `protobuf:"bytes,1,rep,name=broker_partition_assignments,json=brokerPartitionAssignments,proto3" json:"broker_partition_assignments,omitempty"`
  1385. }
  1386. func (x *CheckTopicPartitionsStatusResponse) Reset() {
  1387. *x = CheckTopicPartitionsStatusResponse{}
  1388. if protoimpl.UnsafeEnabled {
  1389. mi := &file_mq_proto_msgTypes[30]
  1390. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1391. ms.StoreMessageInfo(mi)
  1392. }
  1393. }
  1394. func (x *CheckTopicPartitionsStatusResponse) String() string {
  1395. return protoimpl.X.MessageStringOf(x)
  1396. }
  1397. func (*CheckTopicPartitionsStatusResponse) ProtoMessage() {}
  1398. func (x *CheckTopicPartitionsStatusResponse) ProtoReflect() protoreflect.Message {
  1399. mi := &file_mq_proto_msgTypes[30]
  1400. if protoimpl.UnsafeEnabled && x != nil {
  1401. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1402. if ms.LoadMessageInfo() == nil {
  1403. ms.StoreMessageInfo(mi)
  1404. }
  1405. return ms
  1406. }
  1407. return mi.MessageOf(x)
  1408. }
  1409. // Deprecated: Use CheckTopicPartitionsStatusResponse.ProtoReflect.Descriptor instead.
  1410. func (*CheckTopicPartitionsStatusResponse) Descriptor() ([]byte, []int) {
  1411. return file_mq_proto_rawDescGZIP(), []int{30}
  1412. }
  1413. func (x *CheckTopicPartitionsStatusResponse) GetBrokerPartitionAssignments() []*BrokerPartitionAssignment {
  1414. if x != nil {
  1415. return x.BrokerPartitionAssignments
  1416. }
  1417. return nil
  1418. }
  1419. // ////////////////////////////////////////////////
  1420. type DataMessage struct {
  1421. state protoimpl.MessageState
  1422. sizeCache protoimpl.SizeCache
  1423. unknownFields protoimpl.UnknownFields
  1424. Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
  1425. Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  1426. }
  1427. func (x *DataMessage) Reset() {
  1428. *x = DataMessage{}
  1429. if protoimpl.UnsafeEnabled {
  1430. mi := &file_mq_proto_msgTypes[31]
  1431. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1432. ms.StoreMessageInfo(mi)
  1433. }
  1434. }
  1435. func (x *DataMessage) String() string {
  1436. return protoimpl.X.MessageStringOf(x)
  1437. }
  1438. func (*DataMessage) ProtoMessage() {}
  1439. func (x *DataMessage) ProtoReflect() protoreflect.Message {
  1440. mi := &file_mq_proto_msgTypes[31]
  1441. if protoimpl.UnsafeEnabled && x != nil {
  1442. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1443. if ms.LoadMessageInfo() == nil {
  1444. ms.StoreMessageInfo(mi)
  1445. }
  1446. return ms
  1447. }
  1448. return mi.MessageOf(x)
  1449. }
  1450. // Deprecated: Use DataMessage.ProtoReflect.Descriptor instead.
  1451. func (*DataMessage) Descriptor() ([]byte, []int) {
  1452. return file_mq_proto_rawDescGZIP(), []int{31}
  1453. }
  1454. func (x *DataMessage) GetKey() []byte {
  1455. if x != nil {
  1456. return x.Key
  1457. }
  1458. return nil
  1459. }
  1460. func (x *DataMessage) GetValue() []byte {
  1461. if x != nil {
  1462. return x.Value
  1463. }
  1464. return nil
  1465. }
  1466. type PublishRequest struct {
  1467. state protoimpl.MessageState
  1468. sizeCache protoimpl.SizeCache
  1469. unknownFields protoimpl.UnknownFields
  1470. // Types that are assignable to Message:
  1471. //
  1472. // *PublishRequest_Init
  1473. // *PublishRequest_Data
  1474. Message isPublishRequest_Message `protobuf_oneof:"message"`
  1475. Sequence int64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
  1476. }
  1477. func (x *PublishRequest) Reset() {
  1478. *x = PublishRequest{}
  1479. if protoimpl.UnsafeEnabled {
  1480. mi := &file_mq_proto_msgTypes[32]
  1481. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1482. ms.StoreMessageInfo(mi)
  1483. }
  1484. }
  1485. func (x *PublishRequest) String() string {
  1486. return protoimpl.X.MessageStringOf(x)
  1487. }
  1488. func (*PublishRequest) ProtoMessage() {}
  1489. func (x *PublishRequest) ProtoReflect() protoreflect.Message {
  1490. mi := &file_mq_proto_msgTypes[32]
  1491. if protoimpl.UnsafeEnabled && x != nil {
  1492. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1493. if ms.LoadMessageInfo() == nil {
  1494. ms.StoreMessageInfo(mi)
  1495. }
  1496. return ms
  1497. }
  1498. return mi.MessageOf(x)
  1499. }
  1500. // Deprecated: Use PublishRequest.ProtoReflect.Descriptor instead.
  1501. func (*PublishRequest) Descriptor() ([]byte, []int) {
  1502. return file_mq_proto_rawDescGZIP(), []int{32}
  1503. }
  1504. func (m *PublishRequest) GetMessage() isPublishRequest_Message {
  1505. if m != nil {
  1506. return m.Message
  1507. }
  1508. return nil
  1509. }
  1510. func (x *PublishRequest) GetInit() *PublishRequest_InitMessage {
  1511. if x, ok := x.GetMessage().(*PublishRequest_Init); ok {
  1512. return x.Init
  1513. }
  1514. return nil
  1515. }
  1516. func (x *PublishRequest) GetData() *DataMessage {
  1517. if x, ok := x.GetMessage().(*PublishRequest_Data); ok {
  1518. return x.Data
  1519. }
  1520. return nil
  1521. }
  1522. func (x *PublishRequest) GetSequence() int64 {
  1523. if x != nil {
  1524. return x.Sequence
  1525. }
  1526. return 0
  1527. }
  1528. type isPublishRequest_Message interface {
  1529. isPublishRequest_Message()
  1530. }
  1531. type PublishRequest_Init struct {
  1532. Init *PublishRequest_InitMessage `protobuf:"bytes,1,opt,name=init,proto3,oneof"`
  1533. }
  1534. type PublishRequest_Data struct {
  1535. Data *DataMessage `protobuf:"bytes,2,opt,name=data,proto3,oneof"`
  1536. }
  1537. func (*PublishRequest_Init) isPublishRequest_Message() {}
  1538. func (*PublishRequest_Data) isPublishRequest_Message() {}
  1539. type PublishResponse struct {
  1540. state protoimpl.MessageState
  1541. sizeCache protoimpl.SizeCache
  1542. unknownFields protoimpl.UnknownFields
  1543. AckSequence int64 `protobuf:"varint,1,opt,name=ack_sequence,json=ackSequence,proto3" json:"ack_sequence,omitempty"`
  1544. Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
  1545. RedirectToBroker string `protobuf:"bytes,3,opt,name=redirect_to_broker,json=redirectToBroker,proto3" json:"redirect_to_broker,omitempty"`
  1546. }
  1547. func (x *PublishResponse) Reset() {
  1548. *x = PublishResponse{}
  1549. if protoimpl.UnsafeEnabled {
  1550. mi := &file_mq_proto_msgTypes[33]
  1551. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1552. ms.StoreMessageInfo(mi)
  1553. }
  1554. }
  1555. func (x *PublishResponse) String() string {
  1556. return protoimpl.X.MessageStringOf(x)
  1557. }
  1558. func (*PublishResponse) ProtoMessage() {}
  1559. func (x *PublishResponse) ProtoReflect() protoreflect.Message {
  1560. mi := &file_mq_proto_msgTypes[33]
  1561. if protoimpl.UnsafeEnabled && x != nil {
  1562. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1563. if ms.LoadMessageInfo() == nil {
  1564. ms.StoreMessageInfo(mi)
  1565. }
  1566. return ms
  1567. }
  1568. return mi.MessageOf(x)
  1569. }
  1570. // Deprecated: Use PublishResponse.ProtoReflect.Descriptor instead.
  1571. func (*PublishResponse) Descriptor() ([]byte, []int) {
  1572. return file_mq_proto_rawDescGZIP(), []int{33}
  1573. }
  1574. func (x *PublishResponse) GetAckSequence() int64 {
  1575. if x != nil {
  1576. return x.AckSequence
  1577. }
  1578. return 0
  1579. }
  1580. func (x *PublishResponse) GetError() string {
  1581. if x != nil {
  1582. return x.Error
  1583. }
  1584. return ""
  1585. }
  1586. func (x *PublishResponse) GetRedirectToBroker() string {
  1587. if x != nil {
  1588. return x.RedirectToBroker
  1589. }
  1590. return ""
  1591. }
  1592. type SubscribeRequest struct {
  1593. state protoimpl.MessageState
  1594. sizeCache protoimpl.SizeCache
  1595. unknownFields protoimpl.UnknownFields
  1596. // Types that are assignable to Message:
  1597. //
  1598. // *SubscribeRequest_Init
  1599. // *SubscribeRequest_Ack
  1600. Message isSubscribeRequest_Message `protobuf_oneof:"message"`
  1601. }
  1602. func (x *SubscribeRequest) Reset() {
  1603. *x = SubscribeRequest{}
  1604. if protoimpl.UnsafeEnabled {
  1605. mi := &file_mq_proto_msgTypes[34]
  1606. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1607. ms.StoreMessageInfo(mi)
  1608. }
  1609. }
  1610. func (x *SubscribeRequest) String() string {
  1611. return protoimpl.X.MessageStringOf(x)
  1612. }
  1613. func (*SubscribeRequest) ProtoMessage() {}
  1614. func (x *SubscribeRequest) ProtoReflect() protoreflect.Message {
  1615. mi := &file_mq_proto_msgTypes[34]
  1616. if protoimpl.UnsafeEnabled && x != nil {
  1617. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1618. if ms.LoadMessageInfo() == nil {
  1619. ms.StoreMessageInfo(mi)
  1620. }
  1621. return ms
  1622. }
  1623. return mi.MessageOf(x)
  1624. }
  1625. // Deprecated: Use SubscribeRequest.ProtoReflect.Descriptor instead.
  1626. func (*SubscribeRequest) Descriptor() ([]byte, []int) {
  1627. return file_mq_proto_rawDescGZIP(), []int{34}
  1628. }
  1629. func (m *SubscribeRequest) GetMessage() isSubscribeRequest_Message {
  1630. if m != nil {
  1631. return m.Message
  1632. }
  1633. return nil
  1634. }
  1635. func (x *SubscribeRequest) GetInit() *SubscribeRequest_InitMessage {
  1636. if x, ok := x.GetMessage().(*SubscribeRequest_Init); ok {
  1637. return x.Init
  1638. }
  1639. return nil
  1640. }
  1641. func (x *SubscribeRequest) GetAck() *SubscribeRequest_AckMessage {
  1642. if x, ok := x.GetMessage().(*SubscribeRequest_Ack); ok {
  1643. return x.Ack
  1644. }
  1645. return nil
  1646. }
  1647. type isSubscribeRequest_Message interface {
  1648. isSubscribeRequest_Message()
  1649. }
  1650. type SubscribeRequest_Init struct {
  1651. Init *SubscribeRequest_InitMessage `protobuf:"bytes,1,opt,name=init,proto3,oneof"`
  1652. }
  1653. type SubscribeRequest_Ack struct {
  1654. Ack *SubscribeRequest_AckMessage `protobuf:"bytes,2,opt,name=ack,proto3,oneof"`
  1655. }
  1656. func (*SubscribeRequest_Init) isSubscribeRequest_Message() {}
  1657. func (*SubscribeRequest_Ack) isSubscribeRequest_Message() {}
  1658. type SubscribeResponse struct {
  1659. state protoimpl.MessageState
  1660. sizeCache protoimpl.SizeCache
  1661. unknownFields protoimpl.UnknownFields
  1662. // Types that are assignable to Message:
  1663. //
  1664. // *SubscribeResponse_Ctrl
  1665. // *SubscribeResponse_Data
  1666. Message isSubscribeResponse_Message `protobuf_oneof:"message"`
  1667. }
  1668. func (x *SubscribeResponse) Reset() {
  1669. *x = SubscribeResponse{}
  1670. if protoimpl.UnsafeEnabled {
  1671. mi := &file_mq_proto_msgTypes[35]
  1672. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1673. ms.StoreMessageInfo(mi)
  1674. }
  1675. }
  1676. func (x *SubscribeResponse) String() string {
  1677. return protoimpl.X.MessageStringOf(x)
  1678. }
  1679. func (*SubscribeResponse) ProtoMessage() {}
  1680. func (x *SubscribeResponse) ProtoReflect() protoreflect.Message {
  1681. mi := &file_mq_proto_msgTypes[35]
  1682. if protoimpl.UnsafeEnabled && x != nil {
  1683. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1684. if ms.LoadMessageInfo() == nil {
  1685. ms.StoreMessageInfo(mi)
  1686. }
  1687. return ms
  1688. }
  1689. return mi.MessageOf(x)
  1690. }
  1691. // Deprecated: Use SubscribeResponse.ProtoReflect.Descriptor instead.
  1692. func (*SubscribeResponse) Descriptor() ([]byte, []int) {
  1693. return file_mq_proto_rawDescGZIP(), []int{35}
  1694. }
  1695. func (m *SubscribeResponse) GetMessage() isSubscribeResponse_Message {
  1696. if m != nil {
  1697. return m.Message
  1698. }
  1699. return nil
  1700. }
  1701. func (x *SubscribeResponse) GetCtrl() *SubscribeResponse_CtrlMessage {
  1702. if x, ok := x.GetMessage().(*SubscribeResponse_Ctrl); ok {
  1703. return x.Ctrl
  1704. }
  1705. return nil
  1706. }
  1707. func (x *SubscribeResponse) GetData() *DataMessage {
  1708. if x, ok := x.GetMessage().(*SubscribeResponse_Data); ok {
  1709. return x.Data
  1710. }
  1711. return nil
  1712. }
  1713. type isSubscribeResponse_Message interface {
  1714. isSubscribeResponse_Message()
  1715. }
  1716. type SubscribeResponse_Ctrl struct {
  1717. Ctrl *SubscribeResponse_CtrlMessage `protobuf:"bytes,1,opt,name=ctrl,proto3,oneof"`
  1718. }
  1719. type SubscribeResponse_Data struct {
  1720. Data *DataMessage `protobuf:"bytes,2,opt,name=data,proto3,oneof"`
  1721. }
  1722. func (*SubscribeResponse_Ctrl) isSubscribeResponse_Message() {}
  1723. func (*SubscribeResponse_Data) isSubscribeResponse_Message() {}
  1724. type ConnectToBalancerRequest_InitMessage struct {
  1725. state protoimpl.MessageState
  1726. sizeCache protoimpl.SizeCache
  1727. unknownFields protoimpl.UnknownFields
  1728. Broker string `protobuf:"bytes,1,opt,name=broker,proto3" json:"broker,omitempty"`
  1729. }
  1730. func (x *ConnectToBalancerRequest_InitMessage) Reset() {
  1731. *x = ConnectToBalancerRequest_InitMessage{}
  1732. if protoimpl.UnsafeEnabled {
  1733. mi := &file_mq_proto_msgTypes[37]
  1734. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1735. ms.StoreMessageInfo(mi)
  1736. }
  1737. }
  1738. func (x *ConnectToBalancerRequest_InitMessage) String() string {
  1739. return protoimpl.X.MessageStringOf(x)
  1740. }
  1741. func (*ConnectToBalancerRequest_InitMessage) ProtoMessage() {}
  1742. func (x *ConnectToBalancerRequest_InitMessage) ProtoReflect() protoreflect.Message {
  1743. mi := &file_mq_proto_msgTypes[37]
  1744. if protoimpl.UnsafeEnabled && x != nil {
  1745. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1746. if ms.LoadMessageInfo() == nil {
  1747. ms.StoreMessageInfo(mi)
  1748. }
  1749. return ms
  1750. }
  1751. return mi.MessageOf(x)
  1752. }
  1753. // Deprecated: Use ConnectToBalancerRequest_InitMessage.ProtoReflect.Descriptor instead.
  1754. func (*ConnectToBalancerRequest_InitMessage) Descriptor() ([]byte, []int) {
  1755. return file_mq_proto_rawDescGZIP(), []int{14, 0}
  1756. }
  1757. func (x *ConnectToBalancerRequest_InitMessage) GetBroker() string {
  1758. if x != nil {
  1759. return x.Broker
  1760. }
  1761. return ""
  1762. }
  1763. type PublishRequest_InitMessage struct {
  1764. state protoimpl.MessageState
  1765. sizeCache protoimpl.SizeCache
  1766. unknownFields protoimpl.UnknownFields
  1767. Topic *Topic `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"`
  1768. Partition *Partition `protobuf:"bytes,2,opt,name=partition,proto3" json:"partition,omitempty"`
  1769. AckInterval int32 `protobuf:"varint,3,opt,name=ack_interval,json=ackInterval,proto3" json:"ack_interval,omitempty"`
  1770. }
  1771. func (x *PublishRequest_InitMessage) Reset() {
  1772. *x = PublishRequest_InitMessage{}
  1773. if protoimpl.UnsafeEnabled {
  1774. mi := &file_mq_proto_msgTypes[38]
  1775. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1776. ms.StoreMessageInfo(mi)
  1777. }
  1778. }
  1779. func (x *PublishRequest_InitMessage) String() string {
  1780. return protoimpl.X.MessageStringOf(x)
  1781. }
  1782. func (*PublishRequest_InitMessage) ProtoMessage() {}
  1783. func (x *PublishRequest_InitMessage) ProtoReflect() protoreflect.Message {
  1784. mi := &file_mq_proto_msgTypes[38]
  1785. if protoimpl.UnsafeEnabled && x != nil {
  1786. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1787. if ms.LoadMessageInfo() == nil {
  1788. ms.StoreMessageInfo(mi)
  1789. }
  1790. return ms
  1791. }
  1792. return mi.MessageOf(x)
  1793. }
  1794. // Deprecated: Use PublishRequest_InitMessage.ProtoReflect.Descriptor instead.
  1795. func (*PublishRequest_InitMessage) Descriptor() ([]byte, []int) {
  1796. return file_mq_proto_rawDescGZIP(), []int{32, 0}
  1797. }
  1798. func (x *PublishRequest_InitMessage) GetTopic() *Topic {
  1799. if x != nil {
  1800. return x.Topic
  1801. }
  1802. return nil
  1803. }
  1804. func (x *PublishRequest_InitMessage) GetPartition() *Partition {
  1805. if x != nil {
  1806. return x.Partition
  1807. }
  1808. return nil
  1809. }
  1810. func (x *PublishRequest_InitMessage) GetAckInterval() int32 {
  1811. if x != nil {
  1812. return x.AckInterval
  1813. }
  1814. return 0
  1815. }
  1816. type SubscribeRequest_InitMessage struct {
  1817. state protoimpl.MessageState
  1818. sizeCache protoimpl.SizeCache
  1819. unknownFields protoimpl.UnknownFields
  1820. ConsumerGroup string `protobuf:"bytes,1,opt,name=consumer_group,json=consumerGroup,proto3" json:"consumer_group,omitempty"`
  1821. ConsumerId string `protobuf:"bytes,2,opt,name=consumer_id,json=consumerId,proto3" json:"consumer_id,omitempty"`
  1822. ClientId string `protobuf:"bytes,3,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
  1823. Topic *Topic `protobuf:"bytes,4,opt,name=topic,proto3" json:"topic,omitempty"`
  1824. Partition *Partition `protobuf:"bytes,5,opt,name=partition,proto3" json:"partition,omitempty"`
  1825. // Types that are assignable to Offset:
  1826. //
  1827. // *SubscribeRequest_InitMessage_StartOffset
  1828. // *SubscribeRequest_InitMessage_StartTimestampNs
  1829. Offset isSubscribeRequest_InitMessage_Offset `protobuf_oneof:"offset"`
  1830. Filter string `protobuf:"bytes,8,opt,name=filter,proto3" json:"filter,omitempty"`
  1831. }
  1832. func (x *SubscribeRequest_InitMessage) Reset() {
  1833. *x = SubscribeRequest_InitMessage{}
  1834. if protoimpl.UnsafeEnabled {
  1835. mi := &file_mq_proto_msgTypes[39]
  1836. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1837. ms.StoreMessageInfo(mi)
  1838. }
  1839. }
  1840. func (x *SubscribeRequest_InitMessage) String() string {
  1841. return protoimpl.X.MessageStringOf(x)
  1842. }
  1843. func (*SubscribeRequest_InitMessage) ProtoMessage() {}
  1844. func (x *SubscribeRequest_InitMessage) ProtoReflect() protoreflect.Message {
  1845. mi := &file_mq_proto_msgTypes[39]
  1846. if protoimpl.UnsafeEnabled && x != nil {
  1847. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1848. if ms.LoadMessageInfo() == nil {
  1849. ms.StoreMessageInfo(mi)
  1850. }
  1851. return ms
  1852. }
  1853. return mi.MessageOf(x)
  1854. }
  1855. // Deprecated: Use SubscribeRequest_InitMessage.ProtoReflect.Descriptor instead.
  1856. func (*SubscribeRequest_InitMessage) Descriptor() ([]byte, []int) {
  1857. return file_mq_proto_rawDescGZIP(), []int{34, 0}
  1858. }
  1859. func (x *SubscribeRequest_InitMessage) GetConsumerGroup() string {
  1860. if x != nil {
  1861. return x.ConsumerGroup
  1862. }
  1863. return ""
  1864. }
  1865. func (x *SubscribeRequest_InitMessage) GetConsumerId() string {
  1866. if x != nil {
  1867. return x.ConsumerId
  1868. }
  1869. return ""
  1870. }
  1871. func (x *SubscribeRequest_InitMessage) GetClientId() string {
  1872. if x != nil {
  1873. return x.ClientId
  1874. }
  1875. return ""
  1876. }
  1877. func (x *SubscribeRequest_InitMessage) GetTopic() *Topic {
  1878. if x != nil {
  1879. return x.Topic
  1880. }
  1881. return nil
  1882. }
  1883. func (x *SubscribeRequest_InitMessage) GetPartition() *Partition {
  1884. if x != nil {
  1885. return x.Partition
  1886. }
  1887. return nil
  1888. }
  1889. func (m *SubscribeRequest_InitMessage) GetOffset() isSubscribeRequest_InitMessage_Offset {
  1890. if m != nil {
  1891. return m.Offset
  1892. }
  1893. return nil
  1894. }
  1895. func (x *SubscribeRequest_InitMessage) GetStartOffset() int64 {
  1896. if x, ok := x.GetOffset().(*SubscribeRequest_InitMessage_StartOffset); ok {
  1897. return x.StartOffset
  1898. }
  1899. return 0
  1900. }
  1901. func (x *SubscribeRequest_InitMessage) GetStartTimestampNs() int64 {
  1902. if x, ok := x.GetOffset().(*SubscribeRequest_InitMessage_StartTimestampNs); ok {
  1903. return x.StartTimestampNs
  1904. }
  1905. return 0
  1906. }
  1907. func (x *SubscribeRequest_InitMessage) GetFilter() string {
  1908. if x != nil {
  1909. return x.Filter
  1910. }
  1911. return ""
  1912. }
  1913. type isSubscribeRequest_InitMessage_Offset interface {
  1914. isSubscribeRequest_InitMessage_Offset()
  1915. }
  1916. type SubscribeRequest_InitMessage_StartOffset struct {
  1917. StartOffset int64 `protobuf:"varint,6,opt,name=start_offset,json=startOffset,proto3,oneof"`
  1918. }
  1919. type SubscribeRequest_InitMessage_StartTimestampNs struct {
  1920. StartTimestampNs int64 `protobuf:"varint,7,opt,name=start_timestamp_ns,json=startTimestampNs,proto3,oneof"`
  1921. }
  1922. func (*SubscribeRequest_InitMessage_StartOffset) isSubscribeRequest_InitMessage_Offset() {}
  1923. func (*SubscribeRequest_InitMessage_StartTimestampNs) isSubscribeRequest_InitMessage_Offset() {}
  1924. type SubscribeRequest_AckMessage struct {
  1925. state protoimpl.MessageState
  1926. sizeCache protoimpl.SizeCache
  1927. unknownFields protoimpl.UnknownFields
  1928. Sequence int64 `protobuf:"varint,1,opt,name=sequence,proto3" json:"sequence,omitempty"`
  1929. }
  1930. func (x *SubscribeRequest_AckMessage) Reset() {
  1931. *x = SubscribeRequest_AckMessage{}
  1932. if protoimpl.UnsafeEnabled {
  1933. mi := &file_mq_proto_msgTypes[40]
  1934. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1935. ms.StoreMessageInfo(mi)
  1936. }
  1937. }
  1938. func (x *SubscribeRequest_AckMessage) String() string {
  1939. return protoimpl.X.MessageStringOf(x)
  1940. }
  1941. func (*SubscribeRequest_AckMessage) ProtoMessage() {}
  1942. func (x *SubscribeRequest_AckMessage) ProtoReflect() protoreflect.Message {
  1943. mi := &file_mq_proto_msgTypes[40]
  1944. if protoimpl.UnsafeEnabled && x != nil {
  1945. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1946. if ms.LoadMessageInfo() == nil {
  1947. ms.StoreMessageInfo(mi)
  1948. }
  1949. return ms
  1950. }
  1951. return mi.MessageOf(x)
  1952. }
  1953. // Deprecated: Use SubscribeRequest_AckMessage.ProtoReflect.Descriptor instead.
  1954. func (*SubscribeRequest_AckMessage) Descriptor() ([]byte, []int) {
  1955. return file_mq_proto_rawDescGZIP(), []int{34, 1}
  1956. }
  1957. func (x *SubscribeRequest_AckMessage) GetSequence() int64 {
  1958. if x != nil {
  1959. return x.Sequence
  1960. }
  1961. return 0
  1962. }
  1963. type SubscribeResponse_CtrlMessage struct {
  1964. state protoimpl.MessageState
  1965. sizeCache protoimpl.SizeCache
  1966. unknownFields protoimpl.UnknownFields
  1967. Error string `protobuf:"bytes,1,opt,name=error,proto3" json:"error,omitempty"`
  1968. IsEndOfStream bool `protobuf:"varint,2,opt,name=is_end_of_stream,json=isEndOfStream,proto3" json:"is_end_of_stream,omitempty"`
  1969. IsEndOfTopic bool `protobuf:"varint,3,opt,name=is_end_of_topic,json=isEndOfTopic,proto3" json:"is_end_of_topic,omitempty"`
  1970. }
  1971. func (x *SubscribeResponse_CtrlMessage) Reset() {
  1972. *x = SubscribeResponse_CtrlMessage{}
  1973. if protoimpl.UnsafeEnabled {
  1974. mi := &file_mq_proto_msgTypes[41]
  1975. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1976. ms.StoreMessageInfo(mi)
  1977. }
  1978. }
  1979. func (x *SubscribeResponse_CtrlMessage) String() string {
  1980. return protoimpl.X.MessageStringOf(x)
  1981. }
  1982. func (*SubscribeResponse_CtrlMessage) ProtoMessage() {}
  1983. func (x *SubscribeResponse_CtrlMessage) ProtoReflect() protoreflect.Message {
  1984. mi := &file_mq_proto_msgTypes[41]
  1985. if protoimpl.UnsafeEnabled && x != nil {
  1986. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1987. if ms.LoadMessageInfo() == nil {
  1988. ms.StoreMessageInfo(mi)
  1989. }
  1990. return ms
  1991. }
  1992. return mi.MessageOf(x)
  1993. }
  1994. // Deprecated: Use SubscribeResponse_CtrlMessage.ProtoReflect.Descriptor instead.
  1995. func (*SubscribeResponse_CtrlMessage) Descriptor() ([]byte, []int) {
  1996. return file_mq_proto_rawDescGZIP(), []int{35, 0}
  1997. }
  1998. func (x *SubscribeResponse_CtrlMessage) GetError() string {
  1999. if x != nil {
  2000. return x.Error
  2001. }
  2002. return ""
  2003. }
  2004. func (x *SubscribeResponse_CtrlMessage) GetIsEndOfStream() bool {
  2005. if x != nil {
  2006. return x.IsEndOfStream
  2007. }
  2008. return false
  2009. }
  2010. func (x *SubscribeResponse_CtrlMessage) GetIsEndOfTopic() bool {
  2011. if x != nil {
  2012. return x.IsEndOfTopic
  2013. }
  2014. return false
  2015. }
  2016. var File_mq_proto protoreflect.FileDescriptor
  2017. var file_mq_proto_rawDesc = []byte{
  2018. 0x0a, 0x08, 0x6d, 0x71, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0c, 0x6d, 0x65, 0x73, 0x73,
  2019. 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x22, 0xe8, 0x01, 0x0a, 0x0b, 0x53, 0x65, 0x67,
  2020. 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2f, 0x0a, 0x07, 0x73, 0x65, 0x67, 0x6d,
  2021. 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x65, 0x73, 0x73,
  2022. 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74,
  2023. 0x52, 0x07, 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0b, 0x73, 0x74, 0x61,
  2024. 0x72, 0x74, 0x5f, 0x74, 0x73, 0x5f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  2025. 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x73, 0x4e, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x72, 0x6f,
  2026. 0x6b, 0x65, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x62, 0x72, 0x6f, 0x6b,
  2027. 0x65, 0x72, 0x73, 0x12, 0x1c, 0x0a, 0x0a, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x74, 0x73, 0x5f, 0x6e,
  2028. 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x74, 0x6f, 0x70, 0x54, 0x73, 0x4e,
  2029. 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x73, 0x65,
  2030. 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x05, 0x52, 0x10, 0x70, 0x72,
  2031. 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x23,
  2032. 0x0a, 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18,
  2033. 0x06, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0c, 0x6e, 0x65, 0x78, 0x74, 0x53, 0x65, 0x67, 0x6d, 0x65,
  2034. 0x6e, 0x74, 0x73, 0x22, 0x3a, 0x0a, 0x17, 0x46, 0x69, 0x6e, 0x64, 0x42, 0x72, 0x6f, 0x6b, 0x65,
  2035. 0x72, 0x4c, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f,
  2036. 0x0a, 0x0b, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x01, 0x20,
  2037. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x72, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x22,
  2038. 0x32, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x4c, 0x65, 0x61,
  2039. 0x64, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x62,
  2040. 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x62, 0x72, 0x6f,
  2041. 0x6b, 0x65, 0x72, 0x22, 0x39, 0x0a, 0x05, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x1c, 0x0a, 0x09,
  2042. 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2043. 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
  2044. 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x68,
  2045. 0x0a, 0x09, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09, 0x72,
  2046. 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08,
  2047. 0x72, 0x69, 0x6e, 0x67, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x72, 0x61, 0x6e, 0x67,
  2048. 0x65, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x72,
  2049. 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x61, 0x6e,
  2050. 0x67, 0x65, 0x5f, 0x73, 0x74, 0x6f, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x72,
  2051. 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x6f, 0x70, 0x22, 0x84, 0x01, 0x0a, 0x07, 0x53, 0x65, 0x67,
  2052. 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63,
  2053. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61,
  2054. 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x18, 0x02, 0x20, 0x01, 0x28,
  2055. 0x09, 0x52, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03,
  2056. 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x35, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74,
  2057. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x65,
  2058. 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69,
  2059. 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22,
  2060. 0x4e, 0x0a, 0x1b, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74,
  2061. 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2f,
  2062. 0x0a, 0x07, 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
  2063. 0x15, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x53,
  2064. 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x07, 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x22,
  2065. 0x38, 0x0a, 0x1c, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74,
  2066. 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
  2067. 0x18, 0x0a, 0x07, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
  2068. 0x52, 0x07, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x73, 0x22, 0x4c, 0x0a, 0x19, 0x43, 0x68, 0x65,
  2069. 0x63, 0x6b, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
  2070. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2f, 0x0a, 0x07, 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e,
  2071. 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2072. 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x07,
  2073. 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x39, 0x0a, 0x1a, 0x43, 0x68, 0x65, 0x63, 0x6b,
  2074. 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
  2075. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x61, 0x63, 0x74, 0x69,
  2076. 0x76, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x41, 0x63, 0x74, 0x69,
  2077. 0x76, 0x65, 0x22, 0x18, 0x0a, 0x16, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x42, 0x72, 0x6f, 0x6b, 0x65,
  2078. 0x72, 0x4c, 0x6f, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x5f, 0x0a, 0x17,
  2079. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x4c, 0x6f, 0x61, 0x64, 0x52,
  2080. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2081. 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c,
  2082. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1f, 0x0a, 0x0b,
  2083. 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
  2084. 0x03, 0x52, 0x0a, 0x62, 0x79, 0x74, 0x65, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xd2, 0x01,
  2085. 0x0a, 0x0b, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x73, 0x12, 0x2a, 0x0a,
  2086. 0x11, 0x63, 0x70, 0x75, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65,
  2087. 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x63, 0x70, 0x75, 0x55, 0x73, 0x61,
  2088. 0x67, 0x65, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x12, 0x3a, 0x0a, 0x05, 0x73, 0x74, 0x61,
  2089. 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2090. 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x53, 0x74,
  2091. 0x61, 0x74, 0x73, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x05,
  2092. 0x73, 0x74, 0x61, 0x74, 0x73, 0x1a, 0x5b, 0x0a, 0x0a, 0x53, 0x74, 0x61, 0x74, 0x73, 0x45, 0x6e,
  2093. 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2094. 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x37, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
  2095. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67,
  2096. 0x5f, 0x70, 0x62, 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69,
  2097. 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x73, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02,
  2098. 0x38, 0x01, 0x22, 0xbb, 0x01, 0x0a, 0x13, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61, 0x72, 0x74,
  2099. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x73, 0x12, 0x29, 0x0a, 0x05, 0x74, 0x6f,
  2100. 0x70, 0x69, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x65, 0x73, 0x73,
  2101. 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x05,
  2102. 0x74, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x35, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69,
  2103. 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2104. 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f,
  2105. 0x6e, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e,
  2106. 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03,
  2107. 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x72, 0x43, 0x6f,
  2108. 0x75, 0x6e, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x65, 0x72,
  2109. 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x65, 0x72,
  2110. 0x22, 0xc9, 0x01, 0x0a, 0x18, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x54, 0x6f, 0x42, 0x61,
  2111. 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x48, 0x0a,
  2112. 0x04, 0x69, 0x6e, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x6d, 0x65,
  2113. 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x6e, 0x6e, 0x65,
  2114. 0x63, 0x74, 0x54, 0x6f, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
  2115. 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48,
  2116. 0x00, 0x52, 0x04, 0x69, 0x6e, 0x69, 0x74, 0x12, 0x31, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x73,
  2117. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69,
  2118. 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74,
  2119. 0x73, 0x48, 0x00, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x73, 0x1a, 0x25, 0x0a, 0x0b, 0x49, 0x6e,
  2120. 0x69, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x62, 0x72, 0x6f,
  2121. 0x6b, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x62, 0x72, 0x6f, 0x6b, 0x65,
  2122. 0x72, 0x42, 0x09, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x1b, 0x0a, 0x19,
  2123. 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x54, 0x6f, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65,
  2124. 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x6b, 0x0a, 0x15, 0x43, 0x6f, 0x6e,
  2125. 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65,
  2126. 0x73, 0x74, 0x12, 0x29, 0x0a, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28,
  2127. 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62,
  2128. 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x27, 0x0a,
  2129. 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  2130. 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f,
  2131. 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x83, 0x01, 0x0a, 0x16, 0x43, 0x6f, 0x6e, 0x66, 0x69,
  2132. 0x67, 0x75, 0x72, 0x65, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  2133. 0x65, 0x12, 0x69, 0x0a, 0x1c, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x5f, 0x70, 0x61, 0x72, 0x74,
  2134. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d, 0x65, 0x6e, 0x74,
  2135. 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2136. 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x50, 0x61, 0x72,
  2137. 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d, 0x65, 0x6e, 0x74,
  2138. 0x52, 0x1a, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f,
  2139. 0x6e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x22, 0x7b, 0x0a, 0x17,
  2140. 0x44, 0x6f, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x54, 0x6f, 0x70, 0x69, 0x63,
  2141. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63,
  2142. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69,
  2143. 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x05, 0x74, 0x6f, 0x70,
  2144. 0x69, 0x63, 0x12, 0x35, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18,
  2145. 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e,
  2146. 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09,
  2147. 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x1a, 0x0a, 0x18, 0x44, 0x6f, 0x43,
  2148. 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x73,
  2149. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x13, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x6f, 0x70,
  2150. 0x69, 0x63, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x41, 0x0a, 0x12, 0x4c, 0x69,
  2151. 0x73, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  2152. 0x12, 0x2b, 0x0a, 0x06, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  2153. 0x32, 0x13, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e,
  2154. 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x06, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x73, 0x22, 0x6c, 0x0a,
  2155. 0x19, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x42, 0x72, 0x6f, 0x6b,
  2156. 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x05, 0x74, 0x6f,
  2157. 0x70, 0x69, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x65, 0x73, 0x73,
  2158. 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x05,
  2159. 0x74, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x24, 0x0a, 0x0e, 0x69, 0x73, 0x5f, 0x66, 0x6f, 0x72, 0x5f,
  2160. 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69,
  2161. 0x73, 0x46, 0x6f, 0x72, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x22, 0xb2, 0x01, 0x0a, 0x1a,
  2162. 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x42, 0x72, 0x6f, 0x6b, 0x65,
  2163. 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x29, 0x0a, 0x05, 0x74, 0x6f,
  2164. 0x70, 0x69, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x65, 0x73, 0x73,
  2165. 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x05,
  2166. 0x74, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x69, 0x0a, 0x1c, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x5f,
  2167. 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x69, 0x67, 0x6e,
  2168. 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6d, 0x65,
  2169. 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x72, 0x6f, 0x6b, 0x65,
  2170. 0x72, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e,
  2171. 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x1a, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74,
  2172. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x73,
  2173. 0x22, 0xa2, 0x01, 0x0a, 0x19, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x69,
  2174. 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x35,
  2175. 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28,
  2176. 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62,
  2177. 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74,
  2178. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x6c, 0x65, 0x61, 0x64, 0x65, 0x72, 0x5f,
  2179. 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6c, 0x65,
  2180. 0x61, 0x64, 0x65, 0x72, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x12, 0x29, 0x0a, 0x10, 0x66, 0x6f,
  2181. 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x73, 0x18, 0x03,
  2182. 0x20, 0x03, 0x28, 0x09, 0x52, 0x0f, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x42, 0x72,
  2183. 0x6f, 0x6b, 0x65, 0x72, 0x73, 0x22, 0x73, 0x0a, 0x1d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2184. 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52,
  2185. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x18,
  2186. 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e,
  2187. 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x05, 0x74, 0x6f, 0x70, 0x69,
  2188. 0x63, 0x12, 0x27, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63,
  2189. 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x74,
  2190. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x8b, 0x01, 0x0a, 0x1e, 0x52,
  2191. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61, 0x72, 0x74, 0x69,
  2192. 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x69, 0x0a,
  2193. 0x1c, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f,
  2194. 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20,
  2195. 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f,
  2196. 0x70, 0x62, 0x2e, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69,
  2197. 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x1a, 0x62, 0x72,
  2198. 0x6f, 0x6b, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73,
  2199. 0x69, 0x67, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x22, 0xd1, 0x01, 0x0a, 0x1c, 0x41, 0x73, 0x73,
  2200. 0x69, 0x67, 0x6e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f,
  2201. 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x05, 0x74, 0x6f, 0x70,
  2202. 0x69, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2203. 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x05, 0x74,
  2204. 0x6f, 0x70, 0x69, 0x63, 0x12, 0x69, 0x0a, 0x1c, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x5f, 0x70,
  2205. 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d,
  2206. 0x65, 0x6e, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6d, 0x65, 0x73,
  2207. 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72,
  2208. 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d,
  2209. 0x65, 0x6e, 0x74, 0x52, 0x1a, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x69,
  2210. 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12,
  2211. 0x1b, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01,
  2212. 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x65, 0x72, 0x22, 0x1f, 0x0a, 0x1d,
  2213. 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61, 0x72, 0x74, 0x69,
  2214. 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xfc, 0x01,
  2215. 0x0a, 0x21, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61, 0x72, 0x74,
  2216. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
  2217. 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65,
  2218. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63,
  2219. 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2220. 0x52, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x67, 0x0a, 0x1b, 0x62, 0x72, 0x6f, 0x6b, 0x65,
  2221. 0x72, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x69,
  2222. 0x67, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6d,
  2223. 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x72, 0x6f, 0x6b,
  2224. 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x69, 0x67,
  2225. 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x19, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x50, 0x61, 0x72,
  2226. 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d, 0x65, 0x6e, 0x74,
  2227. 0x12, 0x3a, 0x0a, 0x1a, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x5f, 0x63, 0x61, 0x6e, 0x63, 0x65,
  2228. 0x6c, 0x5f, 0x69, 0x66, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x04,
  2229. 0x20, 0x01, 0x28, 0x08, 0x52, 0x16, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64, 0x43, 0x61, 0x6e, 0x63,
  2230. 0x65, 0x6c, 0x49, 0x66, 0x4e, 0x6f, 0x74, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x22, 0x8f, 0x01, 0x0a,
  2231. 0x22, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61, 0x72, 0x74, 0x69,
  2232. 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f,
  2233. 0x6e, 0x73, 0x65, 0x12, 0x69, 0x0a, 0x1c, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x5f, 0x70, 0x61,
  2234. 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d, 0x65,
  2235. 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x6d, 0x65, 0x73, 0x73,
  2236. 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x50,
  2237. 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d, 0x65,
  2238. 0x6e, 0x74, 0x52, 0x1a, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74,
  2239. 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x22, 0x35,
  2240. 0x0a, 0x0b, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a,
  2241. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  2242. 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05,
  2243. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xbd, 0x02, 0x0a, 0x0e, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73,
  2244. 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3e, 0x0a, 0x04, 0x69, 0x6e, 0x69, 0x74,
  2245. 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69,
  2246. 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x52, 0x65, 0x71,
  2247. 0x75, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2248. 0x48, 0x00, 0x52, 0x04, 0x69, 0x6e, 0x69, 0x74, 0x12, 0x2f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  2249. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69,
  2250. 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2251. 0x65, 0x48, 0x00, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71,
  2252. 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x65, 0x71,
  2253. 0x75, 0x65, 0x6e, 0x63, 0x65, 0x1a, 0x92, 0x01, 0x0a, 0x0b, 0x49, 0x6e, 0x69, 0x74, 0x4d, 0x65,
  2254. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x29, 0x0a, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x18, 0x01,
  2255. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67,
  2256. 0x5f, 0x70, 0x62, 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63,
  2257. 0x12, 0x35, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20,
  2258. 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f,
  2259. 0x70, 0x62, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x70, 0x61,
  2260. 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x21, 0x0a, 0x0c, 0x61, 0x63, 0x6b, 0x5f, 0x69,
  2261. 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x61,
  2262. 0x63, 0x6b, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x42, 0x09, 0x0a, 0x07, 0x6d, 0x65,
  2263. 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x78, 0x0a, 0x0f, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68,
  2264. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x61, 0x63, 0x6b, 0x5f,
  2265. 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
  2266. 0x61, 0x63, 0x6b, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65,
  2267. 0x72, 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f,
  2268. 0x72, 0x12, 0x2c, 0x0a, 0x12, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x74, 0x6f,
  2269. 0x5f, 0x62, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x72,
  2270. 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x54, 0x6f, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x22,
  2271. 0x96, 0x04, 0x0a, 0x10, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71,
  2272. 0x75, 0x65, 0x73, 0x74, 0x12, 0x40, 0x0a, 0x04, 0x69, 0x6e, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01,
  2273. 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70,
  2274. 0x62, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  2275. 0x73, 0x74, 0x2e, 0x49, 0x6e, 0x69, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00,
  2276. 0x52, 0x04, 0x69, 0x6e, 0x69, 0x74, 0x12, 0x3d, 0x0a, 0x03, 0x61, 0x63, 0x6b, 0x18, 0x02, 0x20,
  2277. 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f,
  2278. 0x70, 0x62, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75,
  2279. 0x65, 0x73, 0x74, 0x2e, 0x41, 0x63, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00,
  2280. 0x52, 0x03, 0x61, 0x63, 0x6b, 0x1a, 0xcb, 0x02, 0x0a, 0x0b, 0x49, 0x6e, 0x69, 0x74, 0x4d, 0x65,
  2281. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65,
  2282. 0x72, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63,
  2283. 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x72, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x1f, 0x0a, 0x0b,
  2284. 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  2285. 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a,
  2286. 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  2287. 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x29, 0x0a, 0x05, 0x74, 0x6f,
  2288. 0x70, 0x69, 0x63, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6d, 0x65, 0x73, 0x73,
  2289. 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x05,
  2290. 0x74, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x35, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69,
  2291. 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2292. 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f,
  2293. 0x6e, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0c,
  2294. 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x06, 0x20, 0x01,
  2295. 0x28, 0x03, 0x48, 0x00, 0x52, 0x0b, 0x73, 0x74, 0x61, 0x72, 0x74, 0x4f, 0x66, 0x66, 0x73, 0x65,
  2296. 0x74, 0x12, 0x2e, 0x0a, 0x12, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73,
  2297. 0x74, 0x61, 0x6d, 0x70, 0x5f, 0x6e, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52,
  2298. 0x10, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x4e,
  2299. 0x73, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28,
  2300. 0x09, 0x52, 0x06, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x42, 0x08, 0x0a, 0x06, 0x6f, 0x66, 0x66,
  2301. 0x73, 0x65, 0x74, 0x1a, 0x28, 0x0a, 0x0a, 0x41, 0x63, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2302. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x01, 0x20,
  2303. 0x01, 0x28, 0x03, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x09, 0x0a,
  2304. 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x87, 0x02, 0x0a, 0x11, 0x53, 0x75, 0x62,
  2305. 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x41,
  2306. 0x0a, 0x04, 0x63, 0x74, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x6d,
  2307. 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x53, 0x75, 0x62, 0x73,
  2308. 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x43, 0x74,
  2309. 0x72, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x04, 0x63, 0x74, 0x72,
  2310. 0x6c, 0x12, 0x2f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
  2311. 0x19, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x44,
  2312. 0x61, 0x74, 0x61, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x04, 0x64, 0x61,
  2313. 0x74, 0x61, 0x1a, 0x73, 0x0a, 0x0b, 0x43, 0x74, 0x72, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2314. 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2315. 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x27, 0x0a, 0x10, 0x69, 0x73, 0x5f, 0x65, 0x6e,
  2316. 0x64, 0x5f, 0x6f, 0x66, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28,
  2317. 0x08, 0x52, 0x0d, 0x69, 0x73, 0x45, 0x6e, 0x64, 0x4f, 0x66, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d,
  2318. 0x12, 0x25, 0x0a, 0x0f, 0x69, 0x73, 0x5f, 0x65, 0x6e, 0x64, 0x5f, 0x6f, 0x66, 0x5f, 0x74, 0x6f,
  2319. 0x70, 0x69, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x73, 0x45, 0x6e, 0x64,
  2320. 0x4f, 0x66, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x42, 0x09, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2321. 0x67, 0x65, 0x32, 0xb2, 0x0b, 0x0a, 0x10, 0x53, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x4d, 0x65,
  2322. 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x12, 0x63, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64, 0x42,
  2323. 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x64, 0x65, 0x72, 0x12, 0x25, 0x2e, 0x6d, 0x65,
  2324. 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x42,
  2325. 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x64, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
  2326. 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70,
  2327. 0x62, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x4c, 0x65, 0x61, 0x64,
  2328. 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6f, 0x0a, 0x14,
  2329. 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x72, 0x6f,
  2330. 0x6b, 0x65, 0x72, 0x73, 0x12, 0x29, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67,
  2331. 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e,
  2332. 0x74, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2333. 0x2a, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x41,
  2334. 0x73, 0x73, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x72, 0x6f, 0x6b,
  2335. 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x69, 0x0a,
  2336. 0x12, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61,
  2337. 0x74, 0x75, 0x73, 0x12, 0x27, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f,
  2338. 0x70, 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x53,
  2339. 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x6d,
  2340. 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63,
  2341. 0x6b, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
  2342. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x60, 0x0a, 0x0f, 0x43, 0x68, 0x65, 0x63,
  2343. 0x6b, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x4c, 0x6f, 0x61, 0x64, 0x12, 0x24, 0x2e, 0x6d, 0x65,
  2344. 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b,
  2345. 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x4c, 0x6f, 0x61, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2346. 0x74, 0x1a, 0x25, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62,
  2347. 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x4c, 0x6f, 0x61, 0x64,
  2348. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x6a, 0x0a, 0x11, 0x43, 0x6f,
  2349. 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x54, 0x6f, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72, 0x12,
  2350. 0x26, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x43,
  2351. 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x54, 0x6f, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72,
  2352. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2353. 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x54, 0x6f,
  2354. 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  2355. 0x22, 0x00, 0x28, 0x01, 0x30, 0x01, 0x12, 0x63, 0x0a, 0x10, 0x44, 0x6f, 0x43, 0x6f, 0x6e, 0x66,
  2356. 0x69, 0x67, 0x75, 0x72, 0x65, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x25, 0x2e, 0x6d, 0x65, 0x73,
  2357. 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x44, 0x6f, 0x43, 0x6f, 0x6e, 0x66,
  2358. 0x69, 0x67, 0x75, 0x72, 0x65, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2359. 0x74, 0x1a, 0x26, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62,
  2360. 0x2e, 0x44, 0x6f, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x54, 0x6f, 0x70, 0x69,
  2361. 0x63, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x69, 0x0a, 0x12, 0x4c,
  2362. 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72,
  2363. 0x73, 0x12, 0x27, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62,
  2364. 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x42, 0x72, 0x6f, 0x6b,
  2365. 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x6d, 0x65, 0x73,
  2366. 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x75, 0x70,
  2367. 0x54, 0x6f, 0x70, 0x69, 0x63, 0x42, 0x72, 0x6f, 0x6b, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70,
  2368. 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5d, 0x0a, 0x0e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
  2369. 0x75, 0x72, 0x65, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x23, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2370. 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72,
  2371. 0x65, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e,
  2372. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x43, 0x6f, 0x6e,
  2373. 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x73, 0x70, 0x6f,
  2374. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x0a, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x6f, 0x70,
  2375. 0x69, 0x63, 0x73, 0x12, 0x1f, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f,
  2376. 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x73, 0x52, 0x65, 0x71,
  2377. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67,
  2378. 0x5f, 0x70, 0x62, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x73, 0x52, 0x65,
  2379. 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x75, 0x0a, 0x16, 0x52, 0x65, 0x71, 0x75,
  2380. 0x65, 0x73, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f,
  2381. 0x6e, 0x73, 0x12, 0x2b, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70,
  2382. 0x62, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61,
  2383. 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2384. 0x2c, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x52,
  2385. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61, 0x72, 0x74, 0x69,
  2386. 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
  2387. 0x72, 0x0a, 0x15, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61,
  2388. 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2a, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2389. 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x54, 0x6f,
  2390. 0x70, 0x69, 0x63, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71,
  2391. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67,
  2392. 0x5f, 0x70, 0x62, 0x2e, 0x41, 0x73, 0x73, 0x69, 0x67, 0x6e, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50,
  2393. 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  2394. 0x65, 0x22, 0x00, 0x12, 0x81, 0x01, 0x0a, 0x1a, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x6f, 0x70,
  2395. 0x69, 0x63, 0x50, 0x61, 0x72, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x53, 0x74, 0x61, 0x74,
  2396. 0x75, 0x73, 0x12, 0x2f, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70,
  2397. 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61, 0x72, 0x74,
  2398. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
  2399. 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f,
  2400. 0x70, 0x62, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x50, 0x61, 0x72,
  2401. 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73,
  2402. 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x4c, 0x0a, 0x07, 0x50, 0x75, 0x62, 0x6c, 0x69,
  2403. 0x73, 0x68, 0x12, 0x1c, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70,
  2404. 0x62, 0x2e, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2405. 0x1a, 0x1d, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x62, 0x2e,
  2406. 0x50, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  2407. 0x00, 0x28, 0x01, 0x30, 0x01, 0x12, 0x50, 0x0a, 0x09, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
  2408. 0x62, 0x65, 0x12, 0x1e, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70,
  2409. 0x62, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
  2410. 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x69, 0x6e, 0x67, 0x5f, 0x70,
  2411. 0x62, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
  2412. 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x42, 0x4e, 0x0a, 0x0c, 0x73, 0x65, 0x61, 0x77, 0x65,
  2413. 0x65, 0x64, 0x66, 0x73, 0x2e, 0x6d, 0x71, 0x42, 0x10, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x51,
  2414. 0x75, 0x65, 0x75, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x5a, 0x2c, 0x67, 0x69, 0x74, 0x68, 0x75,
  2415. 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f,
  2416. 0x73, 0x65, 0x61, 0x77, 0x65, 0x65, 0x64, 0x66, 0x73, 0x2f, 0x77, 0x65, 0x65, 0x64, 0x2f, 0x70,
  2417. 0x62, 0x2f, 0x6d, 0x71, 0x5f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2418. }
  2419. var (
  2420. file_mq_proto_rawDescOnce sync.Once
  2421. file_mq_proto_rawDescData = file_mq_proto_rawDesc
  2422. )
  2423. func file_mq_proto_rawDescGZIP() []byte {
  2424. file_mq_proto_rawDescOnce.Do(func() {
  2425. file_mq_proto_rawDescData = protoimpl.X.CompressGZIP(file_mq_proto_rawDescData)
  2426. })
  2427. return file_mq_proto_rawDescData
  2428. }
  2429. var file_mq_proto_msgTypes = make([]protoimpl.MessageInfo, 42)
  2430. var file_mq_proto_goTypes = []interface{}{
  2431. (*SegmentInfo)(nil), // 0: messaging_pb.SegmentInfo
  2432. (*FindBrokerLeaderRequest)(nil), // 1: messaging_pb.FindBrokerLeaderRequest
  2433. (*FindBrokerLeaderResponse)(nil), // 2: messaging_pb.FindBrokerLeaderResponse
  2434. (*Topic)(nil), // 3: messaging_pb.Topic
  2435. (*Partition)(nil), // 4: messaging_pb.Partition
  2436. (*Segment)(nil), // 5: messaging_pb.Segment
  2437. (*AssignSegmentBrokersRequest)(nil), // 6: messaging_pb.AssignSegmentBrokersRequest
  2438. (*AssignSegmentBrokersResponse)(nil), // 7: messaging_pb.AssignSegmentBrokersResponse
  2439. (*CheckSegmentStatusRequest)(nil), // 8: messaging_pb.CheckSegmentStatusRequest
  2440. (*CheckSegmentStatusResponse)(nil), // 9: messaging_pb.CheckSegmentStatusResponse
  2441. (*CheckBrokerLoadRequest)(nil), // 10: messaging_pb.CheckBrokerLoadRequest
  2442. (*CheckBrokerLoadResponse)(nil), // 11: messaging_pb.CheckBrokerLoadResponse
  2443. (*BrokerStats)(nil), // 12: messaging_pb.BrokerStats
  2444. (*TopicPartitionStats)(nil), // 13: messaging_pb.TopicPartitionStats
  2445. (*ConnectToBalancerRequest)(nil), // 14: messaging_pb.ConnectToBalancerRequest
  2446. (*ConnectToBalancerResponse)(nil), // 15: messaging_pb.ConnectToBalancerResponse
  2447. (*ConfigureTopicRequest)(nil), // 16: messaging_pb.ConfigureTopicRequest
  2448. (*ConfigureTopicResponse)(nil), // 17: messaging_pb.ConfigureTopicResponse
  2449. (*DoConfigureTopicRequest)(nil), // 18: messaging_pb.DoConfigureTopicRequest
  2450. (*DoConfigureTopicResponse)(nil), // 19: messaging_pb.DoConfigureTopicResponse
  2451. (*ListTopicsRequest)(nil), // 20: messaging_pb.ListTopicsRequest
  2452. (*ListTopicsResponse)(nil), // 21: messaging_pb.ListTopicsResponse
  2453. (*LookupTopicBrokersRequest)(nil), // 22: messaging_pb.LookupTopicBrokersRequest
  2454. (*LookupTopicBrokersResponse)(nil), // 23: messaging_pb.LookupTopicBrokersResponse
  2455. (*BrokerPartitionAssignment)(nil), // 24: messaging_pb.BrokerPartitionAssignment
  2456. (*RequestTopicPartitionsRequest)(nil), // 25: messaging_pb.RequestTopicPartitionsRequest
  2457. (*RequestTopicPartitionsResponse)(nil), // 26: messaging_pb.RequestTopicPartitionsResponse
  2458. (*AssignTopicPartitionsRequest)(nil), // 27: messaging_pb.AssignTopicPartitionsRequest
  2459. (*AssignTopicPartitionsResponse)(nil), // 28: messaging_pb.AssignTopicPartitionsResponse
  2460. (*CheckTopicPartitionsStatusRequest)(nil), // 29: messaging_pb.CheckTopicPartitionsStatusRequest
  2461. (*CheckTopicPartitionsStatusResponse)(nil), // 30: messaging_pb.CheckTopicPartitionsStatusResponse
  2462. (*DataMessage)(nil), // 31: messaging_pb.DataMessage
  2463. (*PublishRequest)(nil), // 32: messaging_pb.PublishRequest
  2464. (*PublishResponse)(nil), // 33: messaging_pb.PublishResponse
  2465. (*SubscribeRequest)(nil), // 34: messaging_pb.SubscribeRequest
  2466. (*SubscribeResponse)(nil), // 35: messaging_pb.SubscribeResponse
  2467. nil, // 36: messaging_pb.BrokerStats.StatsEntry
  2468. (*ConnectToBalancerRequest_InitMessage)(nil), // 37: messaging_pb.ConnectToBalancerRequest.InitMessage
  2469. (*PublishRequest_InitMessage)(nil), // 38: messaging_pb.PublishRequest.InitMessage
  2470. (*SubscribeRequest_InitMessage)(nil), // 39: messaging_pb.SubscribeRequest.InitMessage
  2471. (*SubscribeRequest_AckMessage)(nil), // 40: messaging_pb.SubscribeRequest.AckMessage
  2472. (*SubscribeResponse_CtrlMessage)(nil), // 41: messaging_pb.SubscribeResponse.CtrlMessage
  2473. }
  2474. var file_mq_proto_depIdxs = []int32{
  2475. 5, // 0: messaging_pb.SegmentInfo.segment:type_name -> messaging_pb.Segment
  2476. 4, // 1: messaging_pb.Segment.partition:type_name -> messaging_pb.Partition
  2477. 5, // 2: messaging_pb.AssignSegmentBrokersRequest.segment:type_name -> messaging_pb.Segment
  2478. 5, // 3: messaging_pb.CheckSegmentStatusRequest.segment:type_name -> messaging_pb.Segment
  2479. 36, // 4: messaging_pb.BrokerStats.stats:type_name -> messaging_pb.BrokerStats.StatsEntry
  2480. 3, // 5: messaging_pb.TopicPartitionStats.topic:type_name -> messaging_pb.Topic
  2481. 4, // 6: messaging_pb.TopicPartitionStats.partition:type_name -> messaging_pb.Partition
  2482. 37, // 7: messaging_pb.ConnectToBalancerRequest.init:type_name -> messaging_pb.ConnectToBalancerRequest.InitMessage
  2483. 12, // 8: messaging_pb.ConnectToBalancerRequest.stats:type_name -> messaging_pb.BrokerStats
  2484. 3, // 9: messaging_pb.ConfigureTopicRequest.topic:type_name -> messaging_pb.Topic
  2485. 24, // 10: messaging_pb.ConfigureTopicResponse.broker_partition_assignments:type_name -> messaging_pb.BrokerPartitionAssignment
  2486. 3, // 11: messaging_pb.DoConfigureTopicRequest.topic:type_name -> messaging_pb.Topic
  2487. 4, // 12: messaging_pb.DoConfigureTopicRequest.partition:type_name -> messaging_pb.Partition
  2488. 3, // 13: messaging_pb.ListTopicsResponse.topics:type_name -> messaging_pb.Topic
  2489. 3, // 14: messaging_pb.LookupTopicBrokersRequest.topic:type_name -> messaging_pb.Topic
  2490. 3, // 15: messaging_pb.LookupTopicBrokersResponse.topic:type_name -> messaging_pb.Topic
  2491. 24, // 16: messaging_pb.LookupTopicBrokersResponse.broker_partition_assignments:type_name -> messaging_pb.BrokerPartitionAssignment
  2492. 4, // 17: messaging_pb.BrokerPartitionAssignment.partition:type_name -> messaging_pb.Partition
  2493. 3, // 18: messaging_pb.RequestTopicPartitionsRequest.topic:type_name -> messaging_pb.Topic
  2494. 24, // 19: messaging_pb.RequestTopicPartitionsResponse.broker_partition_assignments:type_name -> messaging_pb.BrokerPartitionAssignment
  2495. 3, // 20: messaging_pb.AssignTopicPartitionsRequest.topic:type_name -> messaging_pb.Topic
  2496. 24, // 21: messaging_pb.AssignTopicPartitionsRequest.broker_partition_assignments:type_name -> messaging_pb.BrokerPartitionAssignment
  2497. 24, // 22: messaging_pb.CheckTopicPartitionsStatusRequest.broker_partition_assignment:type_name -> messaging_pb.BrokerPartitionAssignment
  2498. 24, // 23: messaging_pb.CheckTopicPartitionsStatusResponse.broker_partition_assignments:type_name -> messaging_pb.BrokerPartitionAssignment
  2499. 38, // 24: messaging_pb.PublishRequest.init:type_name -> messaging_pb.PublishRequest.InitMessage
  2500. 31, // 25: messaging_pb.PublishRequest.data:type_name -> messaging_pb.DataMessage
  2501. 39, // 26: messaging_pb.SubscribeRequest.init:type_name -> messaging_pb.SubscribeRequest.InitMessage
  2502. 40, // 27: messaging_pb.SubscribeRequest.ack:type_name -> messaging_pb.SubscribeRequest.AckMessage
  2503. 41, // 28: messaging_pb.SubscribeResponse.ctrl:type_name -> messaging_pb.SubscribeResponse.CtrlMessage
  2504. 31, // 29: messaging_pb.SubscribeResponse.data:type_name -> messaging_pb.DataMessage
  2505. 13, // 30: messaging_pb.BrokerStats.StatsEntry.value:type_name -> messaging_pb.TopicPartitionStats
  2506. 3, // 31: messaging_pb.PublishRequest.InitMessage.topic:type_name -> messaging_pb.Topic
  2507. 4, // 32: messaging_pb.PublishRequest.InitMessage.partition:type_name -> messaging_pb.Partition
  2508. 3, // 33: messaging_pb.SubscribeRequest.InitMessage.topic:type_name -> messaging_pb.Topic
  2509. 4, // 34: messaging_pb.SubscribeRequest.InitMessage.partition:type_name -> messaging_pb.Partition
  2510. 1, // 35: messaging_pb.SeaweedMessaging.FindBrokerLeader:input_type -> messaging_pb.FindBrokerLeaderRequest
  2511. 6, // 36: messaging_pb.SeaweedMessaging.AssignSegmentBrokers:input_type -> messaging_pb.AssignSegmentBrokersRequest
  2512. 8, // 37: messaging_pb.SeaweedMessaging.CheckSegmentStatus:input_type -> messaging_pb.CheckSegmentStatusRequest
  2513. 10, // 38: messaging_pb.SeaweedMessaging.CheckBrokerLoad:input_type -> messaging_pb.CheckBrokerLoadRequest
  2514. 14, // 39: messaging_pb.SeaweedMessaging.ConnectToBalancer:input_type -> messaging_pb.ConnectToBalancerRequest
  2515. 18, // 40: messaging_pb.SeaweedMessaging.DoConfigureTopic:input_type -> messaging_pb.DoConfigureTopicRequest
  2516. 22, // 41: messaging_pb.SeaweedMessaging.LookupTopicBrokers:input_type -> messaging_pb.LookupTopicBrokersRequest
  2517. 16, // 42: messaging_pb.SeaweedMessaging.ConfigureTopic:input_type -> messaging_pb.ConfigureTopicRequest
  2518. 20, // 43: messaging_pb.SeaweedMessaging.ListTopics:input_type -> messaging_pb.ListTopicsRequest
  2519. 25, // 44: messaging_pb.SeaweedMessaging.RequestTopicPartitions:input_type -> messaging_pb.RequestTopicPartitionsRequest
  2520. 27, // 45: messaging_pb.SeaweedMessaging.AssignTopicPartitions:input_type -> messaging_pb.AssignTopicPartitionsRequest
  2521. 29, // 46: messaging_pb.SeaweedMessaging.CheckTopicPartitionsStatus:input_type -> messaging_pb.CheckTopicPartitionsStatusRequest
  2522. 32, // 47: messaging_pb.SeaweedMessaging.Publish:input_type -> messaging_pb.PublishRequest
  2523. 34, // 48: messaging_pb.SeaweedMessaging.Subscribe:input_type -> messaging_pb.SubscribeRequest
  2524. 2, // 49: messaging_pb.SeaweedMessaging.FindBrokerLeader:output_type -> messaging_pb.FindBrokerLeaderResponse
  2525. 7, // 50: messaging_pb.SeaweedMessaging.AssignSegmentBrokers:output_type -> messaging_pb.AssignSegmentBrokersResponse
  2526. 9, // 51: messaging_pb.SeaweedMessaging.CheckSegmentStatus:output_type -> messaging_pb.CheckSegmentStatusResponse
  2527. 11, // 52: messaging_pb.SeaweedMessaging.CheckBrokerLoad:output_type -> messaging_pb.CheckBrokerLoadResponse
  2528. 15, // 53: messaging_pb.SeaweedMessaging.ConnectToBalancer:output_type -> messaging_pb.ConnectToBalancerResponse
  2529. 19, // 54: messaging_pb.SeaweedMessaging.DoConfigureTopic:output_type -> messaging_pb.DoConfigureTopicResponse
  2530. 23, // 55: messaging_pb.SeaweedMessaging.LookupTopicBrokers:output_type -> messaging_pb.LookupTopicBrokersResponse
  2531. 17, // 56: messaging_pb.SeaweedMessaging.ConfigureTopic:output_type -> messaging_pb.ConfigureTopicResponse
  2532. 21, // 57: messaging_pb.SeaweedMessaging.ListTopics:output_type -> messaging_pb.ListTopicsResponse
  2533. 26, // 58: messaging_pb.SeaweedMessaging.RequestTopicPartitions:output_type -> messaging_pb.RequestTopicPartitionsResponse
  2534. 28, // 59: messaging_pb.SeaweedMessaging.AssignTopicPartitions:output_type -> messaging_pb.AssignTopicPartitionsResponse
  2535. 30, // 60: messaging_pb.SeaweedMessaging.CheckTopicPartitionsStatus:output_type -> messaging_pb.CheckTopicPartitionsStatusResponse
  2536. 33, // 61: messaging_pb.SeaweedMessaging.Publish:output_type -> messaging_pb.PublishResponse
  2537. 35, // 62: messaging_pb.SeaweedMessaging.Subscribe:output_type -> messaging_pb.SubscribeResponse
  2538. 49, // [49:63] is the sub-list for method output_type
  2539. 35, // [35:49] is the sub-list for method input_type
  2540. 35, // [35:35] is the sub-list for extension type_name
  2541. 35, // [35:35] is the sub-list for extension extendee
  2542. 0, // [0:35] is the sub-list for field type_name
  2543. }
  2544. func init() { file_mq_proto_init() }
  2545. func file_mq_proto_init() {
  2546. if File_mq_proto != nil {
  2547. return
  2548. }
  2549. if !protoimpl.UnsafeEnabled {
  2550. file_mq_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2551. switch v := v.(*SegmentInfo); i {
  2552. case 0:
  2553. return &v.state
  2554. case 1:
  2555. return &v.sizeCache
  2556. case 2:
  2557. return &v.unknownFields
  2558. default:
  2559. return nil
  2560. }
  2561. }
  2562. file_mq_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2563. switch v := v.(*FindBrokerLeaderRequest); i {
  2564. case 0:
  2565. return &v.state
  2566. case 1:
  2567. return &v.sizeCache
  2568. case 2:
  2569. return &v.unknownFields
  2570. default:
  2571. return nil
  2572. }
  2573. }
  2574. file_mq_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2575. switch v := v.(*FindBrokerLeaderResponse); i {
  2576. case 0:
  2577. return &v.state
  2578. case 1:
  2579. return &v.sizeCache
  2580. case 2:
  2581. return &v.unknownFields
  2582. default:
  2583. return nil
  2584. }
  2585. }
  2586. file_mq_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2587. switch v := v.(*Topic); i {
  2588. case 0:
  2589. return &v.state
  2590. case 1:
  2591. return &v.sizeCache
  2592. case 2:
  2593. return &v.unknownFields
  2594. default:
  2595. return nil
  2596. }
  2597. }
  2598. file_mq_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2599. switch v := v.(*Partition); i {
  2600. case 0:
  2601. return &v.state
  2602. case 1:
  2603. return &v.sizeCache
  2604. case 2:
  2605. return &v.unknownFields
  2606. default:
  2607. return nil
  2608. }
  2609. }
  2610. file_mq_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2611. switch v := v.(*Segment); i {
  2612. case 0:
  2613. return &v.state
  2614. case 1:
  2615. return &v.sizeCache
  2616. case 2:
  2617. return &v.unknownFields
  2618. default:
  2619. return nil
  2620. }
  2621. }
  2622. file_mq_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2623. switch v := v.(*AssignSegmentBrokersRequest); i {
  2624. case 0:
  2625. return &v.state
  2626. case 1:
  2627. return &v.sizeCache
  2628. case 2:
  2629. return &v.unknownFields
  2630. default:
  2631. return nil
  2632. }
  2633. }
  2634. file_mq_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2635. switch v := v.(*AssignSegmentBrokersResponse); i {
  2636. case 0:
  2637. return &v.state
  2638. case 1:
  2639. return &v.sizeCache
  2640. case 2:
  2641. return &v.unknownFields
  2642. default:
  2643. return nil
  2644. }
  2645. }
  2646. file_mq_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2647. switch v := v.(*CheckSegmentStatusRequest); i {
  2648. case 0:
  2649. return &v.state
  2650. case 1:
  2651. return &v.sizeCache
  2652. case 2:
  2653. return &v.unknownFields
  2654. default:
  2655. return nil
  2656. }
  2657. }
  2658. file_mq_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2659. switch v := v.(*CheckSegmentStatusResponse); i {
  2660. case 0:
  2661. return &v.state
  2662. case 1:
  2663. return &v.sizeCache
  2664. case 2:
  2665. return &v.unknownFields
  2666. default:
  2667. return nil
  2668. }
  2669. }
  2670. file_mq_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2671. switch v := v.(*CheckBrokerLoadRequest); i {
  2672. case 0:
  2673. return &v.state
  2674. case 1:
  2675. return &v.sizeCache
  2676. case 2:
  2677. return &v.unknownFields
  2678. default:
  2679. return nil
  2680. }
  2681. }
  2682. file_mq_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2683. switch v := v.(*CheckBrokerLoadResponse); i {
  2684. case 0:
  2685. return &v.state
  2686. case 1:
  2687. return &v.sizeCache
  2688. case 2:
  2689. return &v.unknownFields
  2690. default:
  2691. return nil
  2692. }
  2693. }
  2694. file_mq_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2695. switch v := v.(*BrokerStats); i {
  2696. case 0:
  2697. return &v.state
  2698. case 1:
  2699. return &v.sizeCache
  2700. case 2:
  2701. return &v.unknownFields
  2702. default:
  2703. return nil
  2704. }
  2705. }
  2706. file_mq_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2707. switch v := v.(*TopicPartitionStats); i {
  2708. case 0:
  2709. return &v.state
  2710. case 1:
  2711. return &v.sizeCache
  2712. case 2:
  2713. return &v.unknownFields
  2714. default:
  2715. return nil
  2716. }
  2717. }
  2718. file_mq_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2719. switch v := v.(*ConnectToBalancerRequest); i {
  2720. case 0:
  2721. return &v.state
  2722. case 1:
  2723. return &v.sizeCache
  2724. case 2:
  2725. return &v.unknownFields
  2726. default:
  2727. return nil
  2728. }
  2729. }
  2730. file_mq_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2731. switch v := v.(*ConnectToBalancerResponse); i {
  2732. case 0:
  2733. return &v.state
  2734. case 1:
  2735. return &v.sizeCache
  2736. case 2:
  2737. return &v.unknownFields
  2738. default:
  2739. return nil
  2740. }
  2741. }
  2742. file_mq_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2743. switch v := v.(*ConfigureTopicRequest); i {
  2744. case 0:
  2745. return &v.state
  2746. case 1:
  2747. return &v.sizeCache
  2748. case 2:
  2749. return &v.unknownFields
  2750. default:
  2751. return nil
  2752. }
  2753. }
  2754. file_mq_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2755. switch v := v.(*ConfigureTopicResponse); i {
  2756. case 0:
  2757. return &v.state
  2758. case 1:
  2759. return &v.sizeCache
  2760. case 2:
  2761. return &v.unknownFields
  2762. default:
  2763. return nil
  2764. }
  2765. }
  2766. file_mq_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2767. switch v := v.(*DoConfigureTopicRequest); i {
  2768. case 0:
  2769. return &v.state
  2770. case 1:
  2771. return &v.sizeCache
  2772. case 2:
  2773. return &v.unknownFields
  2774. default:
  2775. return nil
  2776. }
  2777. }
  2778. file_mq_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2779. switch v := v.(*DoConfigureTopicResponse); i {
  2780. case 0:
  2781. return &v.state
  2782. case 1:
  2783. return &v.sizeCache
  2784. case 2:
  2785. return &v.unknownFields
  2786. default:
  2787. return nil
  2788. }
  2789. }
  2790. file_mq_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2791. switch v := v.(*ListTopicsRequest); i {
  2792. case 0:
  2793. return &v.state
  2794. case 1:
  2795. return &v.sizeCache
  2796. case 2:
  2797. return &v.unknownFields
  2798. default:
  2799. return nil
  2800. }
  2801. }
  2802. file_mq_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2803. switch v := v.(*ListTopicsResponse); i {
  2804. case 0:
  2805. return &v.state
  2806. case 1:
  2807. return &v.sizeCache
  2808. case 2:
  2809. return &v.unknownFields
  2810. default:
  2811. return nil
  2812. }
  2813. }
  2814. file_mq_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2815. switch v := v.(*LookupTopicBrokersRequest); i {
  2816. case 0:
  2817. return &v.state
  2818. case 1:
  2819. return &v.sizeCache
  2820. case 2:
  2821. return &v.unknownFields
  2822. default:
  2823. return nil
  2824. }
  2825. }
  2826. file_mq_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2827. switch v := v.(*LookupTopicBrokersResponse); i {
  2828. case 0:
  2829. return &v.state
  2830. case 1:
  2831. return &v.sizeCache
  2832. case 2:
  2833. return &v.unknownFields
  2834. default:
  2835. return nil
  2836. }
  2837. }
  2838. file_mq_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2839. switch v := v.(*BrokerPartitionAssignment); i {
  2840. case 0:
  2841. return &v.state
  2842. case 1:
  2843. return &v.sizeCache
  2844. case 2:
  2845. return &v.unknownFields
  2846. default:
  2847. return nil
  2848. }
  2849. }
  2850. file_mq_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2851. switch v := v.(*RequestTopicPartitionsRequest); i {
  2852. case 0:
  2853. return &v.state
  2854. case 1:
  2855. return &v.sizeCache
  2856. case 2:
  2857. return &v.unknownFields
  2858. default:
  2859. return nil
  2860. }
  2861. }
  2862. file_mq_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2863. switch v := v.(*RequestTopicPartitionsResponse); i {
  2864. case 0:
  2865. return &v.state
  2866. case 1:
  2867. return &v.sizeCache
  2868. case 2:
  2869. return &v.unknownFields
  2870. default:
  2871. return nil
  2872. }
  2873. }
  2874. file_mq_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2875. switch v := v.(*AssignTopicPartitionsRequest); i {
  2876. case 0:
  2877. return &v.state
  2878. case 1:
  2879. return &v.sizeCache
  2880. case 2:
  2881. return &v.unknownFields
  2882. default:
  2883. return nil
  2884. }
  2885. }
  2886. file_mq_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  2887. switch v := v.(*AssignTopicPartitionsResponse); i {
  2888. case 0:
  2889. return &v.state
  2890. case 1:
  2891. return &v.sizeCache
  2892. case 2:
  2893. return &v.unknownFields
  2894. default:
  2895. return nil
  2896. }
  2897. }
  2898. file_mq_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  2899. switch v := v.(*CheckTopicPartitionsStatusRequest); i {
  2900. case 0:
  2901. return &v.state
  2902. case 1:
  2903. return &v.sizeCache
  2904. case 2:
  2905. return &v.unknownFields
  2906. default:
  2907. return nil
  2908. }
  2909. }
  2910. file_mq_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  2911. switch v := v.(*CheckTopicPartitionsStatusResponse); i {
  2912. case 0:
  2913. return &v.state
  2914. case 1:
  2915. return &v.sizeCache
  2916. case 2:
  2917. return &v.unknownFields
  2918. default:
  2919. return nil
  2920. }
  2921. }
  2922. file_mq_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  2923. switch v := v.(*DataMessage); i {
  2924. case 0:
  2925. return &v.state
  2926. case 1:
  2927. return &v.sizeCache
  2928. case 2:
  2929. return &v.unknownFields
  2930. default:
  2931. return nil
  2932. }
  2933. }
  2934. file_mq_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  2935. switch v := v.(*PublishRequest); i {
  2936. case 0:
  2937. return &v.state
  2938. case 1:
  2939. return &v.sizeCache
  2940. case 2:
  2941. return &v.unknownFields
  2942. default:
  2943. return nil
  2944. }
  2945. }
  2946. file_mq_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  2947. switch v := v.(*PublishResponse); i {
  2948. case 0:
  2949. return &v.state
  2950. case 1:
  2951. return &v.sizeCache
  2952. case 2:
  2953. return &v.unknownFields
  2954. default:
  2955. return nil
  2956. }
  2957. }
  2958. file_mq_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  2959. switch v := v.(*SubscribeRequest); i {
  2960. case 0:
  2961. return &v.state
  2962. case 1:
  2963. return &v.sizeCache
  2964. case 2:
  2965. return &v.unknownFields
  2966. default:
  2967. return nil
  2968. }
  2969. }
  2970. file_mq_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  2971. switch v := v.(*SubscribeResponse); i {
  2972. case 0:
  2973. return &v.state
  2974. case 1:
  2975. return &v.sizeCache
  2976. case 2:
  2977. return &v.unknownFields
  2978. default:
  2979. return nil
  2980. }
  2981. }
  2982. file_mq_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  2983. switch v := v.(*ConnectToBalancerRequest_InitMessage); i {
  2984. case 0:
  2985. return &v.state
  2986. case 1:
  2987. return &v.sizeCache
  2988. case 2:
  2989. return &v.unknownFields
  2990. default:
  2991. return nil
  2992. }
  2993. }
  2994. file_mq_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  2995. switch v := v.(*PublishRequest_InitMessage); i {
  2996. case 0:
  2997. return &v.state
  2998. case 1:
  2999. return &v.sizeCache
  3000. case 2:
  3001. return &v.unknownFields
  3002. default:
  3003. return nil
  3004. }
  3005. }
  3006. file_mq_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  3007. switch v := v.(*SubscribeRequest_InitMessage); i {
  3008. case 0:
  3009. return &v.state
  3010. case 1:
  3011. return &v.sizeCache
  3012. case 2:
  3013. return &v.unknownFields
  3014. default:
  3015. return nil
  3016. }
  3017. }
  3018. file_mq_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  3019. switch v := v.(*SubscribeRequest_AckMessage); i {
  3020. case 0:
  3021. return &v.state
  3022. case 1:
  3023. return &v.sizeCache
  3024. case 2:
  3025. return &v.unknownFields
  3026. default:
  3027. return nil
  3028. }
  3029. }
  3030. file_mq_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  3031. switch v := v.(*SubscribeResponse_CtrlMessage); i {
  3032. case 0:
  3033. return &v.state
  3034. case 1:
  3035. return &v.sizeCache
  3036. case 2:
  3037. return &v.unknownFields
  3038. default:
  3039. return nil
  3040. }
  3041. }
  3042. }
  3043. file_mq_proto_msgTypes[14].OneofWrappers = []interface{}{
  3044. (*ConnectToBalancerRequest_Init)(nil),
  3045. (*ConnectToBalancerRequest_Stats)(nil),
  3046. }
  3047. file_mq_proto_msgTypes[32].OneofWrappers = []interface{}{
  3048. (*PublishRequest_Init)(nil),
  3049. (*PublishRequest_Data)(nil),
  3050. }
  3051. file_mq_proto_msgTypes[34].OneofWrappers = []interface{}{
  3052. (*SubscribeRequest_Init)(nil),
  3053. (*SubscribeRequest_Ack)(nil),
  3054. }
  3055. file_mq_proto_msgTypes[35].OneofWrappers = []interface{}{
  3056. (*SubscribeResponse_Ctrl)(nil),
  3057. (*SubscribeResponse_Data)(nil),
  3058. }
  3059. file_mq_proto_msgTypes[39].OneofWrappers = []interface{}{
  3060. (*SubscribeRequest_InitMessage_StartOffset)(nil),
  3061. (*SubscribeRequest_InitMessage_StartTimestampNs)(nil),
  3062. }
  3063. type x struct{}
  3064. out := protoimpl.TypeBuilder{
  3065. File: protoimpl.DescBuilder{
  3066. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3067. RawDescriptor: file_mq_proto_rawDesc,
  3068. NumEnums: 0,
  3069. NumMessages: 42,
  3070. NumExtensions: 0,
  3071. NumServices: 1,
  3072. },
  3073. GoTypes: file_mq_proto_goTypes,
  3074. DependencyIndexes: file_mq_proto_depIdxs,
  3075. MessageInfos: file_mq_proto_msgTypes,
  3076. }.Build()
  3077. File_mq_proto = out.File
  3078. file_mq_proto_rawDesc = nil
  3079. file_mq_proto_goTypes = nil
  3080. file_mq_proto_depIdxs = nil
  3081. }