mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
102 lines
3.5 KiB
Go
102 lines
3.5 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
|
|
package s3_pb
|
|
|
|
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.32.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion7
|
|
|
|
// SeaweedS3Client is the client API for SeaweedS3 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 SeaweedS3Client interface {
|
|
Configure(ctx context.Context, in *S3ConfigureRequest, opts ...grpc.CallOption) (*S3ConfigureResponse, error)
|
|
}
|
|
|
|
type seaweedS3Client struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewSeaweedS3Client(cc grpc.ClientConnInterface) SeaweedS3Client {
|
|
return &seaweedS3Client{cc}
|
|
}
|
|
|
|
func (c *seaweedS3Client) Configure(ctx context.Context, in *S3ConfigureRequest, opts ...grpc.CallOption) (*S3ConfigureResponse, error) {
|
|
out := new(S3ConfigureResponse)
|
|
err := c.cc.Invoke(ctx, "/messaging_pb.SeaweedS3/Configure", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// SeaweedS3Server is the server API for SeaweedS3 service.
|
|
// All implementations must embed UnimplementedSeaweedS3Server
|
|
// for forward compatibility
|
|
type SeaweedS3Server interface {
|
|
Configure(context.Context, *S3ConfigureRequest) (*S3ConfigureResponse, error)
|
|
mustEmbedUnimplementedSeaweedS3Server()
|
|
}
|
|
|
|
// UnimplementedSeaweedS3Server must be embedded to have forward compatible implementations.
|
|
type UnimplementedSeaweedS3Server struct {
|
|
}
|
|
|
|
func (UnimplementedSeaweedS3Server) Configure(context.Context, *S3ConfigureRequest) (*S3ConfigureResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Configure not implemented")
|
|
}
|
|
func (UnimplementedSeaweedS3Server) mustEmbedUnimplementedSeaweedS3Server() {}
|
|
|
|
// UnsafeSeaweedS3Server may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to SeaweedS3Server will
|
|
// result in compilation errors.
|
|
type UnsafeSeaweedS3Server interface {
|
|
mustEmbedUnimplementedSeaweedS3Server()
|
|
}
|
|
|
|
func RegisterSeaweedS3Server(s grpc.ServiceRegistrar, srv SeaweedS3Server) {
|
|
s.RegisterService(&SeaweedS3_ServiceDesc, srv)
|
|
}
|
|
|
|
func _SeaweedS3_Configure_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(S3ConfigureRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(SeaweedS3Server).Configure(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/messaging_pb.SeaweedS3/Configure",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(SeaweedS3Server).Configure(ctx, req.(*S3ConfigureRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// SeaweedS3_ServiceDesc is the grpc.ServiceDesc for SeaweedS3 service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var SeaweedS3_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "messaging_pb.SeaweedS3",
|
|
HandlerType: (*SeaweedS3Server)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Configure",
|
|
Handler: _SeaweedS3_Configure_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "s3.proto",
|
|
}
|