statistics_grpc.pb.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484
  1. // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
  2. package statistics
  3. import (
  4. context "context"
  5. grpc "google.golang.org/grpc"
  6. codes "google.golang.org/grpc/codes"
  7. status "google.golang.org/grpc/status"
  8. emptypb "google.golang.org/protobuf/types/known/emptypb"
  9. )
  10. // This is a compile-time assertion to ensure that this generated file
  11. // is compatible with the grpc package it is being compiled against.
  12. // Requires gRPC-Go v1.32.0 or later.
  13. const _ = grpc.SupportPackageIsVersion7
  14. // StatisticsClient is the client API for Statistics service.
  15. //
  16. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
  17. type StatisticsClient interface {
  18. // 观看用户主页
  19. LookPerson(ctx context.Context, in *PersonMessage, opts ...grpc.CallOption) (*emptypb.Empty, error)
  20. // 关注用户
  21. LikePerson(ctx context.Context, in *PersonMessage, opts ...grpc.CallOption) (*emptypb.Empty, error)
  22. // 取关用户
  23. UnLikePerson(ctx context.Context, in *PersonMessage, opts ...grpc.CallOption) (*emptypb.Empty, error)
  24. // 获取用户端统计信息
  25. GetLookAndLikeStatisticsMessage(ctx context.Context, in *GetStatisticsMessageRequest, opts ...grpc.CallOption) (*LookAndLikeMessageReply, error)
  26. // 获取陪聊端统计信息
  27. GetLookStatisticsMessage(ctx context.Context, in *GetStatisticsMessageRequest, opts ...grpc.CallOption) (*LookMessageReply, error)
  28. // 减少"看过我的"的未读数
  29. ReduceLookUnreadNum(ctx context.Context, in *PersonMessage, opts ...grpc.CallOption) (*emptypb.Empty, error)
  30. // 减少"喜欢我的"的未读数
  31. ReduceLikeUnreadNum(ctx context.Context, in *PersonMessage, opts ...grpc.CallOption) (*emptypb.Empty, error)
  32. // 解锁"看过我的"的记录
  33. UnlockLookRecord(ctx context.Context, in *PersonMessage, opts ...grpc.CallOption) (*emptypb.Empty, error)
  34. // 查看看过我的列表
  35. FindLookList(ctx context.Context, in *GetLookAndLikeListRequest, opts ...grpc.CallOption) (*LookAndLikeListReply, error)
  36. // 查看我喜欢的列表
  37. FindLikeList(ctx context.Context, in *GetLookAndLikeListRequest, opts ...grpc.CallOption) (*LookAndLikeListReply, error)
  38. // 查看喜欢我的列表
  39. FindLikedList(ctx context.Context, in *GetLookAndLikeListRequest, opts ...grpc.CallOption) (*LookAndLikeListReply, error)
  40. }
  41. type statisticsClient struct {
  42. cc grpc.ClientConnInterface
  43. }
  44. func NewStatisticsClient(cc grpc.ClientConnInterface) StatisticsClient {
  45. return &statisticsClient{cc}
  46. }
  47. func (c *statisticsClient) LookPerson(ctx context.Context, in *PersonMessage, opts ...grpc.CallOption) (*emptypb.Empty, error) {
  48. out := new(emptypb.Empty)
  49. err := c.cc.Invoke(ctx, "/api.statistics.Statistics/LookPerson", in, out, opts...)
  50. if err != nil {
  51. return nil, err
  52. }
  53. return out, nil
  54. }
  55. func (c *statisticsClient) LikePerson(ctx context.Context, in *PersonMessage, opts ...grpc.CallOption) (*emptypb.Empty, error) {
  56. out := new(emptypb.Empty)
  57. err := c.cc.Invoke(ctx, "/api.statistics.Statistics/LikePerson", in, out, opts...)
  58. if err != nil {
  59. return nil, err
  60. }
  61. return out, nil
  62. }
  63. func (c *statisticsClient) UnLikePerson(ctx context.Context, in *PersonMessage, opts ...grpc.CallOption) (*emptypb.Empty, error) {
  64. out := new(emptypb.Empty)
  65. err := c.cc.Invoke(ctx, "/api.statistics.Statistics/UnLikePerson", in, out, opts...)
  66. if err != nil {
  67. return nil, err
  68. }
  69. return out, nil
  70. }
  71. func (c *statisticsClient) GetLookAndLikeStatisticsMessage(ctx context.Context, in *GetStatisticsMessageRequest, opts ...grpc.CallOption) (*LookAndLikeMessageReply, error) {
  72. out := new(LookAndLikeMessageReply)
  73. err := c.cc.Invoke(ctx, "/api.statistics.Statistics/GetLookAndLikeStatisticsMessage", in, out, opts...)
  74. if err != nil {
  75. return nil, err
  76. }
  77. return out, nil
  78. }
  79. func (c *statisticsClient) GetLookStatisticsMessage(ctx context.Context, in *GetStatisticsMessageRequest, opts ...grpc.CallOption) (*LookMessageReply, error) {
  80. out := new(LookMessageReply)
  81. err := c.cc.Invoke(ctx, "/api.statistics.Statistics/GetLookStatisticsMessage", in, out, opts...)
  82. if err != nil {
  83. return nil, err
  84. }
  85. return out, nil
  86. }
  87. func (c *statisticsClient) ReduceLookUnreadNum(ctx context.Context, in *PersonMessage, opts ...grpc.CallOption) (*emptypb.Empty, error) {
  88. out := new(emptypb.Empty)
  89. err := c.cc.Invoke(ctx, "/api.statistics.Statistics/ReduceLookUnreadNum", in, out, opts...)
  90. if err != nil {
  91. return nil, err
  92. }
  93. return out, nil
  94. }
  95. func (c *statisticsClient) ReduceLikeUnreadNum(ctx context.Context, in *PersonMessage, opts ...grpc.CallOption) (*emptypb.Empty, error) {
  96. out := new(emptypb.Empty)
  97. err := c.cc.Invoke(ctx, "/api.statistics.Statistics/ReduceLikeUnreadNum", in, out, opts...)
  98. if err != nil {
  99. return nil, err
  100. }
  101. return out, nil
  102. }
  103. func (c *statisticsClient) UnlockLookRecord(ctx context.Context, in *PersonMessage, opts ...grpc.CallOption) (*emptypb.Empty, error) {
  104. out := new(emptypb.Empty)
  105. err := c.cc.Invoke(ctx, "/api.statistics.Statistics/UnlockLookRecord", in, out, opts...)
  106. if err != nil {
  107. return nil, err
  108. }
  109. return out, nil
  110. }
  111. func (c *statisticsClient) FindLookList(ctx context.Context, in *GetLookAndLikeListRequest, opts ...grpc.CallOption) (*LookAndLikeListReply, error) {
  112. out := new(LookAndLikeListReply)
  113. err := c.cc.Invoke(ctx, "/api.statistics.Statistics/FindLookList", in, out, opts...)
  114. if err != nil {
  115. return nil, err
  116. }
  117. return out, nil
  118. }
  119. func (c *statisticsClient) FindLikeList(ctx context.Context, in *GetLookAndLikeListRequest, opts ...grpc.CallOption) (*LookAndLikeListReply, error) {
  120. out := new(LookAndLikeListReply)
  121. err := c.cc.Invoke(ctx, "/api.statistics.Statistics/FindLikeList", in, out, opts...)
  122. if err != nil {
  123. return nil, err
  124. }
  125. return out, nil
  126. }
  127. func (c *statisticsClient) FindLikedList(ctx context.Context, in *GetLookAndLikeListRequest, opts ...grpc.CallOption) (*LookAndLikeListReply, error) {
  128. out := new(LookAndLikeListReply)
  129. err := c.cc.Invoke(ctx, "/api.statistics.Statistics/FindLikedList", in, out, opts...)
  130. if err != nil {
  131. return nil, err
  132. }
  133. return out, nil
  134. }
  135. // StatisticsServer is the server API for Statistics service.
  136. // All implementations must embed UnimplementedStatisticsServer
  137. // for forward compatibility
  138. type StatisticsServer interface {
  139. // 观看用户主页
  140. LookPerson(context.Context, *PersonMessage) (*emptypb.Empty, error)
  141. // 关注用户
  142. LikePerson(context.Context, *PersonMessage) (*emptypb.Empty, error)
  143. // 取关用户
  144. UnLikePerson(context.Context, *PersonMessage) (*emptypb.Empty, error)
  145. // 获取用户端统计信息
  146. GetLookAndLikeStatisticsMessage(context.Context, *GetStatisticsMessageRequest) (*LookAndLikeMessageReply, error)
  147. // 获取陪聊端统计信息
  148. GetLookStatisticsMessage(context.Context, *GetStatisticsMessageRequest) (*LookMessageReply, error)
  149. // 减少"看过我的"的未读数
  150. ReduceLookUnreadNum(context.Context, *PersonMessage) (*emptypb.Empty, error)
  151. // 减少"喜欢我的"的未读数
  152. ReduceLikeUnreadNum(context.Context, *PersonMessage) (*emptypb.Empty, error)
  153. // 解锁"看过我的"的记录
  154. UnlockLookRecord(context.Context, *PersonMessage) (*emptypb.Empty, error)
  155. // 查看看过我的列表
  156. FindLookList(context.Context, *GetLookAndLikeListRequest) (*LookAndLikeListReply, error)
  157. // 查看我喜欢的列表
  158. FindLikeList(context.Context, *GetLookAndLikeListRequest) (*LookAndLikeListReply, error)
  159. // 查看喜欢我的列表
  160. FindLikedList(context.Context, *GetLookAndLikeListRequest) (*LookAndLikeListReply, error)
  161. mustEmbedUnimplementedStatisticsServer()
  162. }
  163. // UnimplementedStatisticsServer must be embedded to have forward compatible implementations.
  164. type UnimplementedStatisticsServer struct {
  165. }
  166. func (UnimplementedStatisticsServer) LookPerson(context.Context, *PersonMessage) (*emptypb.Empty, error) {
  167. return nil, status.Errorf(codes.Unimplemented, "method LookPerson not implemented")
  168. }
  169. func (UnimplementedStatisticsServer) LikePerson(context.Context, *PersonMessage) (*emptypb.Empty, error) {
  170. return nil, status.Errorf(codes.Unimplemented, "method LikePerson not implemented")
  171. }
  172. func (UnimplementedStatisticsServer) UnLikePerson(context.Context, *PersonMessage) (*emptypb.Empty, error) {
  173. return nil, status.Errorf(codes.Unimplemented, "method UnLikePerson not implemented")
  174. }
  175. func (UnimplementedStatisticsServer) GetLookAndLikeStatisticsMessage(context.Context, *GetStatisticsMessageRequest) (*LookAndLikeMessageReply, error) {
  176. return nil, status.Errorf(codes.Unimplemented, "method GetLookAndLikeStatisticsMessage not implemented")
  177. }
  178. func (UnimplementedStatisticsServer) GetLookStatisticsMessage(context.Context, *GetStatisticsMessageRequest) (*LookMessageReply, error) {
  179. return nil, status.Errorf(codes.Unimplemented, "method GetLookStatisticsMessage not implemented")
  180. }
  181. func (UnimplementedStatisticsServer) ReduceLookUnreadNum(context.Context, *PersonMessage) (*emptypb.Empty, error) {
  182. return nil, status.Errorf(codes.Unimplemented, "method ReduceLookUnreadNum not implemented")
  183. }
  184. func (UnimplementedStatisticsServer) ReduceLikeUnreadNum(context.Context, *PersonMessage) (*emptypb.Empty, error) {
  185. return nil, status.Errorf(codes.Unimplemented, "method ReduceLikeUnreadNum not implemented")
  186. }
  187. func (UnimplementedStatisticsServer) UnlockLookRecord(context.Context, *PersonMessage) (*emptypb.Empty, error) {
  188. return nil, status.Errorf(codes.Unimplemented, "method UnlockLookRecord not implemented")
  189. }
  190. func (UnimplementedStatisticsServer) FindLookList(context.Context, *GetLookAndLikeListRequest) (*LookAndLikeListReply, error) {
  191. return nil, status.Errorf(codes.Unimplemented, "method FindLookList not implemented")
  192. }
  193. func (UnimplementedStatisticsServer) FindLikeList(context.Context, *GetLookAndLikeListRequest) (*LookAndLikeListReply, error) {
  194. return nil, status.Errorf(codes.Unimplemented, "method FindLikeList not implemented")
  195. }
  196. func (UnimplementedStatisticsServer) FindLikedList(context.Context, *GetLookAndLikeListRequest) (*LookAndLikeListReply, error) {
  197. return nil, status.Errorf(codes.Unimplemented, "method FindLikedList not implemented")
  198. }
  199. func (UnimplementedStatisticsServer) mustEmbedUnimplementedStatisticsServer() {}
  200. // UnsafeStatisticsServer may be embedded to opt out of forward compatibility for this service.
  201. // Use of this interface is not recommended, as added methods to StatisticsServer will
  202. // result in compilation errors.
  203. type UnsafeStatisticsServer interface {
  204. mustEmbedUnimplementedStatisticsServer()
  205. }
  206. func RegisterStatisticsServer(s grpc.ServiceRegistrar, srv StatisticsServer) {
  207. s.RegisterService(&Statistics_ServiceDesc, srv)
  208. }
  209. func _Statistics_LookPerson_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  210. in := new(PersonMessage)
  211. if err := dec(in); err != nil {
  212. return nil, err
  213. }
  214. if interceptor == nil {
  215. return srv.(StatisticsServer).LookPerson(ctx, in)
  216. }
  217. info := &grpc.UnaryServerInfo{
  218. Server: srv,
  219. FullMethod: "/api.statistics.Statistics/LookPerson",
  220. }
  221. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  222. return srv.(StatisticsServer).LookPerson(ctx, req.(*PersonMessage))
  223. }
  224. return interceptor(ctx, in, info, handler)
  225. }
  226. func _Statistics_LikePerson_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  227. in := new(PersonMessage)
  228. if err := dec(in); err != nil {
  229. return nil, err
  230. }
  231. if interceptor == nil {
  232. return srv.(StatisticsServer).LikePerson(ctx, in)
  233. }
  234. info := &grpc.UnaryServerInfo{
  235. Server: srv,
  236. FullMethod: "/api.statistics.Statistics/LikePerson",
  237. }
  238. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  239. return srv.(StatisticsServer).LikePerson(ctx, req.(*PersonMessage))
  240. }
  241. return interceptor(ctx, in, info, handler)
  242. }
  243. func _Statistics_UnLikePerson_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  244. in := new(PersonMessage)
  245. if err := dec(in); err != nil {
  246. return nil, err
  247. }
  248. if interceptor == nil {
  249. return srv.(StatisticsServer).UnLikePerson(ctx, in)
  250. }
  251. info := &grpc.UnaryServerInfo{
  252. Server: srv,
  253. FullMethod: "/api.statistics.Statistics/UnLikePerson",
  254. }
  255. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  256. return srv.(StatisticsServer).UnLikePerson(ctx, req.(*PersonMessage))
  257. }
  258. return interceptor(ctx, in, info, handler)
  259. }
  260. func _Statistics_GetLookAndLikeStatisticsMessage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  261. in := new(GetStatisticsMessageRequest)
  262. if err := dec(in); err != nil {
  263. return nil, err
  264. }
  265. if interceptor == nil {
  266. return srv.(StatisticsServer).GetLookAndLikeStatisticsMessage(ctx, in)
  267. }
  268. info := &grpc.UnaryServerInfo{
  269. Server: srv,
  270. FullMethod: "/api.statistics.Statistics/GetLookAndLikeStatisticsMessage",
  271. }
  272. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  273. return srv.(StatisticsServer).GetLookAndLikeStatisticsMessage(ctx, req.(*GetStatisticsMessageRequest))
  274. }
  275. return interceptor(ctx, in, info, handler)
  276. }
  277. func _Statistics_GetLookStatisticsMessage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  278. in := new(GetStatisticsMessageRequest)
  279. if err := dec(in); err != nil {
  280. return nil, err
  281. }
  282. if interceptor == nil {
  283. return srv.(StatisticsServer).GetLookStatisticsMessage(ctx, in)
  284. }
  285. info := &grpc.UnaryServerInfo{
  286. Server: srv,
  287. FullMethod: "/api.statistics.Statistics/GetLookStatisticsMessage",
  288. }
  289. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  290. return srv.(StatisticsServer).GetLookStatisticsMessage(ctx, req.(*GetStatisticsMessageRequest))
  291. }
  292. return interceptor(ctx, in, info, handler)
  293. }
  294. func _Statistics_ReduceLookUnreadNum_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  295. in := new(PersonMessage)
  296. if err := dec(in); err != nil {
  297. return nil, err
  298. }
  299. if interceptor == nil {
  300. return srv.(StatisticsServer).ReduceLookUnreadNum(ctx, in)
  301. }
  302. info := &grpc.UnaryServerInfo{
  303. Server: srv,
  304. FullMethod: "/api.statistics.Statistics/ReduceLookUnreadNum",
  305. }
  306. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  307. return srv.(StatisticsServer).ReduceLookUnreadNum(ctx, req.(*PersonMessage))
  308. }
  309. return interceptor(ctx, in, info, handler)
  310. }
  311. func _Statistics_ReduceLikeUnreadNum_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  312. in := new(PersonMessage)
  313. if err := dec(in); err != nil {
  314. return nil, err
  315. }
  316. if interceptor == nil {
  317. return srv.(StatisticsServer).ReduceLikeUnreadNum(ctx, in)
  318. }
  319. info := &grpc.UnaryServerInfo{
  320. Server: srv,
  321. FullMethod: "/api.statistics.Statistics/ReduceLikeUnreadNum",
  322. }
  323. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  324. return srv.(StatisticsServer).ReduceLikeUnreadNum(ctx, req.(*PersonMessage))
  325. }
  326. return interceptor(ctx, in, info, handler)
  327. }
  328. func _Statistics_UnlockLookRecord_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  329. in := new(PersonMessage)
  330. if err := dec(in); err != nil {
  331. return nil, err
  332. }
  333. if interceptor == nil {
  334. return srv.(StatisticsServer).UnlockLookRecord(ctx, in)
  335. }
  336. info := &grpc.UnaryServerInfo{
  337. Server: srv,
  338. FullMethod: "/api.statistics.Statistics/UnlockLookRecord",
  339. }
  340. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  341. return srv.(StatisticsServer).UnlockLookRecord(ctx, req.(*PersonMessage))
  342. }
  343. return interceptor(ctx, in, info, handler)
  344. }
  345. func _Statistics_FindLookList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  346. in := new(GetLookAndLikeListRequest)
  347. if err := dec(in); err != nil {
  348. return nil, err
  349. }
  350. if interceptor == nil {
  351. return srv.(StatisticsServer).FindLookList(ctx, in)
  352. }
  353. info := &grpc.UnaryServerInfo{
  354. Server: srv,
  355. FullMethod: "/api.statistics.Statistics/FindLookList",
  356. }
  357. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  358. return srv.(StatisticsServer).FindLookList(ctx, req.(*GetLookAndLikeListRequest))
  359. }
  360. return interceptor(ctx, in, info, handler)
  361. }
  362. func _Statistics_FindLikeList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  363. in := new(GetLookAndLikeListRequest)
  364. if err := dec(in); err != nil {
  365. return nil, err
  366. }
  367. if interceptor == nil {
  368. return srv.(StatisticsServer).FindLikeList(ctx, in)
  369. }
  370. info := &grpc.UnaryServerInfo{
  371. Server: srv,
  372. FullMethod: "/api.statistics.Statistics/FindLikeList",
  373. }
  374. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  375. return srv.(StatisticsServer).FindLikeList(ctx, req.(*GetLookAndLikeListRequest))
  376. }
  377. return interceptor(ctx, in, info, handler)
  378. }
  379. func _Statistics_FindLikedList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  380. in := new(GetLookAndLikeListRequest)
  381. if err := dec(in); err != nil {
  382. return nil, err
  383. }
  384. if interceptor == nil {
  385. return srv.(StatisticsServer).FindLikedList(ctx, in)
  386. }
  387. info := &grpc.UnaryServerInfo{
  388. Server: srv,
  389. FullMethod: "/api.statistics.Statistics/FindLikedList",
  390. }
  391. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  392. return srv.(StatisticsServer).FindLikedList(ctx, req.(*GetLookAndLikeListRequest))
  393. }
  394. return interceptor(ctx, in, info, handler)
  395. }
  396. // Statistics_ServiceDesc is the grpc.ServiceDesc for Statistics service.
  397. // It's only intended for direct use with grpc.RegisterService,
  398. // and not to be introspected or modified (even as a copy)
  399. var Statistics_ServiceDesc = grpc.ServiceDesc{
  400. ServiceName: "api.statistics.Statistics",
  401. HandlerType: (*StatisticsServer)(nil),
  402. Methods: []grpc.MethodDesc{
  403. {
  404. MethodName: "LookPerson",
  405. Handler: _Statistics_LookPerson_Handler,
  406. },
  407. {
  408. MethodName: "LikePerson",
  409. Handler: _Statistics_LikePerson_Handler,
  410. },
  411. {
  412. MethodName: "UnLikePerson",
  413. Handler: _Statistics_UnLikePerson_Handler,
  414. },
  415. {
  416. MethodName: "GetLookAndLikeStatisticsMessage",
  417. Handler: _Statistics_GetLookAndLikeStatisticsMessage_Handler,
  418. },
  419. {
  420. MethodName: "GetLookStatisticsMessage",
  421. Handler: _Statistics_GetLookStatisticsMessage_Handler,
  422. },
  423. {
  424. MethodName: "ReduceLookUnreadNum",
  425. Handler: _Statistics_ReduceLookUnreadNum_Handler,
  426. },
  427. {
  428. MethodName: "ReduceLikeUnreadNum",
  429. Handler: _Statistics_ReduceLikeUnreadNum_Handler,
  430. },
  431. {
  432. MethodName: "UnlockLookRecord",
  433. Handler: _Statistics_UnlockLookRecord_Handler,
  434. },
  435. {
  436. MethodName: "FindLookList",
  437. Handler: _Statistics_FindLookList_Handler,
  438. },
  439. {
  440. MethodName: "FindLikeList",
  441. Handler: _Statistics_FindLikeList_Handler,
  442. },
  443. {
  444. MethodName: "FindLikedList",
  445. Handler: _Statistics_FindLikedList_Handler,
  446. },
  447. },
  448. Streams: []grpc.StreamDesc{},
  449. Metadata: "statistics.proto",
  450. }