Class SpeechGrpc.SpeechImplBase (4.11.0)

public abstract static class SpeechGrpc.SpeechImplBase implements BindableService

Service that implements Google Cloud Speech API.

Inheritance

java.lang.Object > SpeechGrpc.SpeechImplBase

Implements

io.grpc.BindableService

Constructors

SpeechImplBase()

public SpeechImplBase()

Methods

asyncRecognize(AsyncRecognizeRequest request, StreamObserver<Operation> responseObserver)

public void asyncRecognize(AsyncRecognizeRequest request, StreamObserver<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 an AsyncRecognizeResponse message.

Parameters
NameDescription
requestAsyncRecognizeRequest
responseObserverio.grpc.stub.StreamObserver<Operation>

bindService()

public final ServerServiceDefinition bindService()
Returns
TypeDescription
io.grpc.ServerServiceDefinition

streamingRecognize(StreamObserver<StreamingRecognizeResponse> responseObserver)

public StreamObserver<StreamingRecognizeRequest> streamingRecognize(StreamObserver<StreamingRecognizeResponse> responseObserver)

Performs bidirectional streaming speech recognition: receive results while sending audio. This method is only available via the gRPC API (not REST).

Parameter
NameDescription
responseObserverio.grpc.stub.StreamObserver<StreamingRecognizeResponse>
Returns
TypeDescription
io.grpc.stub.StreamObserver<StreamingRecognizeRequest>

syncRecognize(SyncRecognizeRequest request, StreamObserver<SyncRecognizeResponse> responseObserver)

public void syncRecognize(SyncRecognizeRequest request, StreamObserver<SyncRecognizeResponse> responseObserver)

Performs synchronous speech recognition: receive results after all audio has been sent and processed.

Parameters
NameDescription
requestSyncRecognizeRequest
responseObserverio.grpc.stub.StreamObserver<SyncRecognizeResponse>