KeenASR React Native Plugin (v2.2)
    Preparing search index...

    Enumeration RecognizerState

    Possible states of the recognizer.

    The recognizer follows a lifecycle:

    1. After initialize, the state is NeedsDecodingGraph
    2. After prepareForListening, the state is ReadyToListen
    3. After startListening, the state is Listening
    4. When processing the final result, the state is FinalProcessing
    5. After the final response is emitted, the state returns to ReadyToListen

    Query the current state with getRecognizerState.

    Index

    Enumeration Members

    NeedsDecodingGraph: 0

    Recognizer needs a decoding graph before it can listen. Call prepareForListening.

    ReadyToListen: 1

    Recognizer is ready to start listening. Call startListening.

    Listening: 2

    Recognizer is currently listening for speech.

    FinalProcessing: 3

    Recognizer is performing final processing after speech ended.