github.com/yandex-cloud/geesefs@v0.40.9/internal/pb/recovery_grpc.pb.go (about) 1 // Code generated by protoc-gen-go-grpc. DO NOT EDIT. 2 // versions: 3 // - protoc-gen-go-grpc v1.3.0 4 // - protoc v3.12.4 5 // source: internal/pb/recovery.proto 6 7 package pb 8 9 import ( 10 context "context" 11 grpc "google.golang.org/grpc" 12 codes "google.golang.org/grpc/codes" 13 status "google.golang.org/grpc/status" 14 ) 15 16 // This is a compile-time assertion to ensure that this generated file 17 // is compatible with the grpc package it is being compiled against. 18 // Requires gRPC-Go v1.32.0 or later. 19 const _ = grpc.SupportPackageIsVersion7 20 21 const ( 22 Recovery_Unmount_FullMethodName = "/Recovery/Unmount" 23 ) 24 25 // RecoveryClient is the client API for Recovery service. 26 // 27 // 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. 28 type RecoveryClient interface { 29 Unmount(ctx context.Context, in *UnmountRequest, opts ...grpc.CallOption) (*UnmountResponse, error) 30 } 31 32 type recoveryClient struct { 33 cc grpc.ClientConnInterface 34 } 35 36 func NewRecoveryClient(cc grpc.ClientConnInterface) RecoveryClient { 37 return &recoveryClient{cc} 38 } 39 40 func (c *recoveryClient) Unmount(ctx context.Context, in *UnmountRequest, opts ...grpc.CallOption) (*UnmountResponse, error) { 41 out := new(UnmountResponse) 42 err := c.cc.Invoke(ctx, Recovery_Unmount_FullMethodName, in, out, opts...) 43 if err != nil { 44 return nil, err 45 } 46 return out, nil 47 } 48 49 // RecoveryServer is the server API for Recovery service. 50 // All implementations must embed UnimplementedRecoveryServer 51 // for forward compatibility 52 type RecoveryServer interface { 53 Unmount(context.Context, *UnmountRequest) (*UnmountResponse, error) 54 mustEmbedUnimplementedRecoveryServer() 55 } 56 57 // UnimplementedRecoveryServer must be embedded to have forward compatible implementations. 58 type UnimplementedRecoveryServer struct { 59 } 60 61 func (UnimplementedRecoveryServer) Unmount(context.Context, *UnmountRequest) (*UnmountResponse, error) { 62 return nil, status.Errorf(codes.Unimplemented, "method Unmount not implemented") 63 } 64 func (UnimplementedRecoveryServer) mustEmbedUnimplementedRecoveryServer() {} 65 66 // UnsafeRecoveryServer may be embedded to opt out of forward compatibility for this service. 67 // Use of this interface is not recommended, as added methods to RecoveryServer will 68 // result in compilation errors. 69 type UnsafeRecoveryServer interface { 70 mustEmbedUnimplementedRecoveryServer() 71 } 72 73 func RegisterRecoveryServer(s grpc.ServiceRegistrar, srv RecoveryServer) { 74 s.RegisterService(&Recovery_ServiceDesc, srv) 75 } 76 77 func _Recovery_Unmount_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { 78 in := new(UnmountRequest) 79 if err := dec(in); err != nil { 80 return nil, err 81 } 82 if interceptor == nil { 83 return srv.(RecoveryServer).Unmount(ctx, in) 84 } 85 info := &grpc.UnaryServerInfo{ 86 Server: srv, 87 FullMethod: Recovery_Unmount_FullMethodName, 88 } 89 handler := func(ctx context.Context, req interface{}) (interface{}, error) { 90 return srv.(RecoveryServer).Unmount(ctx, req.(*UnmountRequest)) 91 } 92 return interceptor(ctx, in, info, handler) 93 } 94 95 // Recovery_ServiceDesc is the grpc.ServiceDesc for Recovery service. 96 // It's only intended for direct use with grpc.RegisterService, 97 // and not to be introspected or modified (even as a copy) 98 var Recovery_ServiceDesc = grpc.ServiceDesc{ 99 ServiceName: "Recovery", 100 HandlerType: (*RecoveryServer)(nil), 101 Methods: []grpc.MethodDesc{ 102 { 103 MethodName: "Unmount", 104 Handler: _Recovery_Unmount_Handler, 105 }, 106 }, 107 Streams: []grpc.StreamDesc{}, 108 Metadata: "internal/pb/recovery.proto", 109 }