statistics_grpc.pb.go 19 KB

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