com.google.cloud.speech.v1p1beta1.StreamingRecognitionConfigOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-speech-v1p1beta1 Show documentation
Show all versions of proto-google-cloud-speech-v1p1beta1 Show documentation
PROTO library for proto-google-cloud-speech-v1p1beta1
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/speech/v1p1beta1/cloud_speech.proto
package com.google.cloud.speech.v1p1beta1;
public interface StreamingRecognitionConfigOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.cloud.speech.v1p1beta1.StreamingRecognitionConfig)
com.google.protobuf.MessageOrBuilder {
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* .google.cloud.speech.v1p1beta1.RecognitionConfig config = 1;
*/
boolean hasConfig();
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* .google.cloud.speech.v1p1beta1.RecognitionConfig config = 1;
*/
com.google.cloud.speech.v1p1beta1.RecognitionConfig getConfig();
/**
*
* *Required* Provides information to the recognizer that specifies how to
* process the request.
*
*
* .google.cloud.speech.v1p1beta1.RecognitionConfig config = 1;
*/
com.google.cloud.speech.v1p1beta1.RecognitionConfigOrBuilder getConfigOrBuilder();
/**
*
* *Optional* If `false` or omitted, the recognizer will perform continuous
* recognition (continuing to wait for and process audio even if the user
* pauses speaking) until the client closes the input stream (gRPC API) or
* until the maximum time limit has been reached. May return multiple
* `StreamingRecognitionResult`s with the `is_final` flag set to `true`.
* If `true`, the recognizer will detect a single spoken utterance. When it
* detects that the user has paused or stopped speaking, it will return an
* `END_OF_SINGLE_UTTERANCE` event and cease recognition. It will return no
* more than one `StreamingRecognitionResult` with the `is_final` flag set to
* `true`.
*
*
* bool single_utterance = 2;
*/
boolean getSingleUtterance();
/**
*
* *Optional* If `true`, interim results (tentative hypotheses) may be
* returned as they become available (these interim results are indicated with
* the `is_final=false` flag).
* If `false` or omitted, only `is_final=true` result(s) are returned.
*
*
* bool interim_results = 3;
*/
boolean getInterimResults();
}