// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.6.1 // - protoc v5.29.3 // source: asr.proto package 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.64.0 or later. const _ = grpc.SupportPackageIsVersion9 const ( ASRService_TranscribeStream_FullMethodName = "/cyberverse.ASRService/TranscribeStream" ) // ASRServiceClient is the client API for ASRService 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 ASRServiceClient interface { TranscribeStream(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[ASRInput, TranscriptEvent], error) } type aSRServiceClient struct { cc grpc.ClientConnInterface } func NewASRServiceClient(cc grpc.ClientConnInterface) ASRServiceClient { return &aSRServiceClient{cc} } func (c *aSRServiceClient) TranscribeStream(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[ASRInput, TranscriptEvent], error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) stream, err := c.cc.NewStream(ctx, &ASRService_ServiceDesc.Streams[0], ASRService_TranscribeStream_FullMethodName, cOpts...) if err != nil { return nil, err } x := &grpc.GenericClientStream[ASRInput, TranscriptEvent]{ClientStream: stream} return x, nil } // This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. type ASRService_TranscribeStreamClient = grpc.BidiStreamingClient[ASRInput, TranscriptEvent] // ASRServiceServer is the server API for ASRService service. // All implementations must embed UnimplementedASRServiceServer // for forward compatibility. type ASRServiceServer interface { TranscribeStream(grpc.BidiStreamingServer[ASRInput, TranscriptEvent]) error mustEmbedUnimplementedASRServiceServer() } // UnimplementedASRServiceServer 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 UnimplementedASRServiceServer struct{} func (UnimplementedASRServiceServer) TranscribeStream(grpc.BidiStreamingServer[ASRInput, TranscriptEvent]) error { return status.Error(codes.Unimplemented, "method TranscribeStream not implemented") } func (UnimplementedASRServiceServer) mustEmbedUnimplementedASRServiceServer() {} func (UnimplementedASRServiceServer) testEmbeddedByValue() {} // UnsafeASRServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to ASRServiceServer will // result in compilation errors. type UnsafeASRServiceServer interface { mustEmbedUnimplementedASRServiceServer() } func RegisterASRServiceServer(s grpc.ServiceRegistrar, srv ASRServiceServer) { // If the following call panics, it indicates UnimplementedASRServiceServer 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(&ASRService_ServiceDesc, srv) } func _ASRService_TranscribeStream_Handler(srv interface{}, stream grpc.ServerStream) error { return srv.(ASRServiceServer).TranscribeStream(&grpc.GenericServerStream[ASRInput, TranscriptEvent]{ServerStream: stream}) } // This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. type ASRService_TranscribeStreamServer = grpc.BidiStreamingServer[ASRInput, TranscriptEvent] // ASRService_ServiceDesc is the grpc.ServiceDesc for ASRService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ASRService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "cyberverse.ASRService", HandlerType: (*ASRServiceServer)(nil), Methods: []grpc.MethodDesc{}, Streams: []grpc.StreamDesc{ { StreamName: "TranscribeStream", Handler: _ASRService_TranscribeStream_Handler, ServerStreams: true, ClientStreams: true, }, }, Metadata: "asr.proto", }