// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.1.0 // - protoc v3.21.6 // source: opentelemetry/proto/collector/logs/v1/logs_service.proto package v1 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 // LogsServiceClient is the client API for LogsService 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 LogsServiceClient interface { // For performance reasons, it is recommended to keep this RPC // alive for the entire life of the application. Export(ctx context.Context, in *ExportLogsServiceRequest, opts ...grpc.CallOption) (*ExportLogsServiceResponse, error) } type logsServiceClient struct { cc grpc.ClientConnInterface } func NewLogsServiceClient(cc grpc.ClientConnInterface) LogsServiceClient { return &logsServiceClient{cc} } func (c *logsServiceClient) Export(ctx context.Context, in *ExportLogsServiceRequest, opts ...grpc.CallOption) (*ExportLogsServiceResponse, error) { out := new(ExportLogsServiceResponse) err := c.cc.Invoke(ctx, "/opentelemetry.proto.collector.logs.v1.LogsService/Export", in, out, opts...) if err != nil { return nil, err } return out, nil } // LogsServiceServer is the server API for LogsService service. // All implementations must embed UnimplementedLogsServiceServer // for forward compatibility type LogsServiceServer interface { // For performance reasons, it is recommended to keep this RPC // alive for the entire life of the application. Export(context.Context, *ExportLogsServiceRequest) (*ExportLogsServiceResponse, error) mustEmbedUnimplementedLogsServiceServer() } // UnimplementedLogsServiceServer must be embedded to have forward compatible implementations. type UnimplementedLogsServiceServer struct { } func (UnimplementedLogsServiceServer) Export(context.Context, *ExportLogsServiceRequest) (*ExportLogsServiceResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Export not implemented") } func (UnimplementedLogsServiceServer) mustEmbedUnimplementedLogsServiceServer() {} // UnsafeLogsServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to LogsServiceServer will // result in compilation errors. type UnsafeLogsServiceServer interface { mustEmbedUnimplementedLogsServiceServer() } func RegisterLogsServiceServer(s grpc.ServiceRegistrar, srv LogsServiceServer) { s.RegisterService(&LogsService_ServiceDesc, srv) } func _LogsService_Export_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ExportLogsServiceRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(LogsServiceServer).Export(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/opentelemetry.proto.collector.logs.v1.LogsService/Export", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(LogsServiceServer).Export(ctx, req.(*ExportLogsServiceRequest)) } return interceptor(ctx, in, info, handler) } // LogsService_ServiceDesc is the grpc.ServiceDesc for LogsService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var LogsService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "opentelemetry.proto.collector.logs.v1.LogsService", HandlerType: (*LogsServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Export", Handler: _LogsService_Export_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "opentelemetry/proto/collector/logs/v1/logs_service.proto", }