Package com.google.cloud.speech.v1
Class SpeechGrpc.SpeechStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractAsyncStub<SpeechGrpc.SpeechStub>
-
- com.google.cloud.speech.v1.SpeechGrpc.SpeechStub
-
- Enclosing class:
- SpeechGrpc
public static final class SpeechGrpc.SpeechStub extends io.grpc.stub.AbstractAsyncStub<SpeechGrpc.SpeechStub>
A stub to allow clients to do asynchronous rpc calls to service Speech.Service that implements Google Cloud Speech API.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected SpeechGrpc.SpeechStub
build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
void
longRunningRecognize(LongRunningRecognizeRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Performs asynchronous speech recognition: receive results via the google.longrunning.Operations interface.void
recognize(RecognizeRequest request, io.grpc.stub.StreamObserver<RecognizeResponse> responseObserver)
Performs synchronous speech recognition: receive results after all audio has been sent and processed.io.grpc.stub.StreamObserver<StreamingRecognizeRequest>
streamingRecognize(io.grpc.stub.StreamObserver<StreamingRecognizeResponse> responseObserver)
Performs bidirectional streaming speech recognition: receive results while sending audio.
-
-
-
Method Detail
-
build
protected SpeechGrpc.SpeechStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
build
in classio.grpc.stub.AbstractStub<SpeechGrpc.SpeechStub>
-
recognize
public void recognize(RecognizeRequest request, io.grpc.stub.StreamObserver<RecognizeResponse> responseObserver)
Performs synchronous speech recognition: receive results after all audio has been sent and processed.
-
longRunningRecognize
public void longRunningRecognize(LongRunningRecognizeRequest request, io.grpc.stub.StreamObserver<com.google.longrunning.Operation> responseObserver)
Performs asynchronous speech recognition: receive results via the google.longrunning.Operations interface. Returns either an `Operation.error` or an `Operation.response` which contains a `LongRunningRecognizeResponse` message. For more information on asynchronous speech recognition, see the [how-to](https://cloud.google.com/speech-to-text/docs/async-recognize).
-
streamingRecognize
public io.grpc.stub.StreamObserver<StreamingRecognizeRequest> streamingRecognize(io.grpc.stub.StreamObserver<StreamingRecognizeResponse> responseObserver)
Performs bidirectional streaming speech recognition: receive results while sending audio. This method is only available via the gRPC API (not REST).
-
-