// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v6.30.1 // source: share.proto package survey import ( context "context" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" ) // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. // Requires gRPC-Go v1.64.0 or later. const _ = grpc.SupportPackageIsVersion9 const ( Share_Create_FullMethodName = "/survey.Share/Create" Share_Fetch_FullMethodName = "/survey.Share/Fetch" Share_SetStatus_FullMethodName = "/survey.Share/SetStatus" ) // ShareClient is the client API for Share service. // // 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. // // 问卷服务 - 分享管理 type ShareClient interface { Create(ctx context.Context, in *IdentRequest, opts ...grpc.CallOption) (*StatusReply, error) Fetch(ctx context.Context, in *FetchRequest, opts ...grpc.CallOption) (*ListShareReply, error) SetStatus(ctx context.Context, in *StatusReply, opts ...grpc.CallOption) (*StatusReply, error) } type shareClient struct { cc grpc.ClientConnInterface } func NewShareClient(cc grpc.ClientConnInterface) ShareClient { return &shareClient{cc} } func (c *shareClient) Create(ctx context.Context, in *IdentRequest, opts ...grpc.CallOption) (*StatusReply, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(StatusReply) err := c.cc.Invoke(ctx, Share_Create_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *shareClient) Fetch(ctx context.Context, in *FetchRequest, opts ...grpc.CallOption) (*ListShareReply, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListShareReply) err := c.cc.Invoke(ctx, Share_Fetch_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *shareClient) SetStatus(ctx context.Context, in *StatusReply, opts ...grpc.CallOption) (*StatusReply, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(StatusReply) err := c.cc.Invoke(ctx, Share_SetStatus_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } // ShareServer is the server API for Share service. // All implementations must embed UnimplementedShareServer // for forward compatibility. // // 问卷服务 - 分享管理 type ShareServer interface { Create(context.Context, *IdentRequest) (*StatusReply, error) Fetch(context.Context, *FetchRequest) (*ListShareReply, error) SetStatus(context.Context, *StatusReply) (*StatusReply, error) mustEmbedUnimplementedShareServer() } // UnimplementedShareServer must be embedded to have // forward compatible implementations. // // NOTE: this should be embedded by value instead of pointer to avoid a nil // pointer dereference when methods are called. type UnimplementedShareServer struct{} func (UnimplementedShareServer) Create(context.Context, *IdentRequest) (*StatusReply, error) { return nil, status.Errorf(codes.Unimplemented, "method Create not implemented") } func (UnimplementedShareServer) Fetch(context.Context, *FetchRequest) (*ListShareReply, error) { return nil, status.Errorf(codes.Unimplemented, "method Fetch not implemented") } func (UnimplementedShareServer) SetStatus(context.Context, *StatusReply) (*StatusReply, error) { return nil, status.Errorf(codes.Unimplemented, "method SetStatus not implemented") } func (UnimplementedShareServer) mustEmbedUnimplementedShareServer() {} func (UnimplementedShareServer) testEmbeddedByValue() {} // UnsafeShareServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to ShareServer will // result in compilation errors. type UnsafeShareServer interface { mustEmbedUnimplementedShareServer() } func RegisterShareServer(s grpc.ServiceRegistrar, srv ShareServer) { // If the following call pancis, it indicates UnimplementedShareServer was // embedded by pointer and is nil. This will cause panics if an // unimplemented method is ever invoked, so we test this at initialization // time to prevent it from happening at runtime later due to I/O. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok { t.testEmbeddedByValue() } s.RegisterService(&Share_ServiceDesc, srv) } func _Share_Create_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(IdentRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ShareServer).Create(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: Share_Create_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ShareServer).Create(ctx, req.(*IdentRequest)) } return interceptor(ctx, in, info, handler) } func _Share_Fetch_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(FetchRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ShareServer).Fetch(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: Share_Fetch_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ShareServer).Fetch(ctx, req.(*FetchRequest)) } return interceptor(ctx, in, info, handler) } func _Share_SetStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(StatusReply) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ShareServer).SetStatus(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: Share_SetStatus_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ShareServer).SetStatus(ctx, req.(*StatusReply)) } return interceptor(ctx, in, info, handler) } // Share_ServiceDesc is the grpc.ServiceDesc for Share service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var Share_ServiceDesc = grpc.ServiceDesc{ ServiceName: "survey.Share", HandlerType: (*ShareServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Create", Handler: _Share_Create_Handler, }, { MethodName: "Fetch", Handler: _Share_Fetch_Handler, }, { MethodName: "SetStatus", Handler: _Share_SetStatus_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "share.proto", }