chat_grpc.pb.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
  2. package chat
  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. )
  9. // This is a compile-time assertion to ensure that this generated file
  10. // is compatible with the grpc package it is being compiled against.
  11. // Requires gRPC-Go v1.32.0 or later.
  12. const _ = grpc.SupportPackageIsVersion7
  13. // ChatClient is the client API for Chat service.
  14. //
  15. // 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.
  16. type ChatClient interface {
  17. CheckUserPartnerIsRelationship(ctx context.Context, in *CheckUserPartnerIsRelationshipRequest, opts ...grpc.CallOption) (*CheckUserPartnerIsRelationshipReply, error)
  18. }
  19. type chatClient struct {
  20. cc grpc.ClientConnInterface
  21. }
  22. func NewChatClient(cc grpc.ClientConnInterface) ChatClient {
  23. return &chatClient{cc}
  24. }
  25. func (c *chatClient) CheckUserPartnerIsRelationship(ctx context.Context, in *CheckUserPartnerIsRelationshipRequest, opts ...grpc.CallOption) (*CheckUserPartnerIsRelationshipReply, error) {
  26. out := new(CheckUserPartnerIsRelationshipReply)
  27. err := c.cc.Invoke(ctx, "/api.chat.Chat/CheckUserPartnerIsRelationship", in, out, opts...)
  28. if err != nil {
  29. return nil, err
  30. }
  31. return out, nil
  32. }
  33. // ChatServer is the server API for Chat service.
  34. // All implementations must embed UnimplementedChatServer
  35. // for forward compatibility
  36. type ChatServer interface {
  37. CheckUserPartnerIsRelationship(context.Context, *CheckUserPartnerIsRelationshipRequest) (*CheckUserPartnerIsRelationshipReply, error)
  38. mustEmbedUnimplementedChatServer()
  39. }
  40. // UnimplementedChatServer must be embedded to have forward compatible implementations.
  41. type UnimplementedChatServer struct {
  42. }
  43. func (UnimplementedChatServer) CheckUserPartnerIsRelationship(context.Context, *CheckUserPartnerIsRelationshipRequest) (*CheckUserPartnerIsRelationshipReply, error) {
  44. return nil, status.Errorf(codes.Unimplemented, "method CheckUserPartnerIsRelationship not implemented")
  45. }
  46. func (UnimplementedChatServer) mustEmbedUnimplementedChatServer() {}
  47. // UnsafeChatServer may be embedded to opt out of forward compatibility for this service.
  48. // Use of this interface is not recommended, as added methods to ChatServer will
  49. // result in compilation errors.
  50. type UnsafeChatServer interface {
  51. mustEmbedUnimplementedChatServer()
  52. }
  53. func RegisterChatServer(s grpc.ServiceRegistrar, srv ChatServer) {
  54. s.RegisterService(&Chat_ServiceDesc, srv)
  55. }
  56. func _Chat_CheckUserPartnerIsRelationship_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  57. in := new(CheckUserPartnerIsRelationshipRequest)
  58. if err := dec(in); err != nil {
  59. return nil, err
  60. }
  61. if interceptor == nil {
  62. return srv.(ChatServer).CheckUserPartnerIsRelationship(ctx, in)
  63. }
  64. info := &grpc.UnaryServerInfo{
  65. Server: srv,
  66. FullMethod: "/api.chat.Chat/CheckUserPartnerIsRelationship",
  67. }
  68. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  69. return srv.(ChatServer).CheckUserPartnerIsRelationship(ctx, req.(*CheckUserPartnerIsRelationshipRequest))
  70. }
  71. return interceptor(ctx, in, info, handler)
  72. }
  73. // Chat_ServiceDesc is the grpc.ServiceDesc for Chat service.
  74. // It's only intended for direct use with grpc.RegisterService,
  75. // and not to be introspected or modified (even as a copy)
  76. var Chat_ServiceDesc = grpc.ServiceDesc{
  77. ServiceName: "api.chat.Chat",
  78. HandlerType: (*ChatServer)(nil),
  79. Methods: []grpc.MethodDesc{
  80. {
  81. MethodName: "CheckUserPartnerIsRelationship",
  82. Handler: _Chat_CheckUserPartnerIsRelationship_Handler,
  83. },
  84. },
  85. Streams: []grpc.StreamDesc{},
  86. Metadata: "chat.proto",
  87. }