Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 968 Bytes

SpeechlyError.md

File metadata and controls

50 lines (33 loc) · 968 Bytes

SpeechlyError

Errors caught by SpeechClientProtocol and dispatched to SpeechClientDelegate.

public enum SpeechlyError

Inheritance

Error

Enumeration Cases

networkError

A network-level error. Usually these errors are unrecoverable and require a full restart of the client.

case networkError(: String)

audioError

An error within the audio recorder stack. Normally these errors are recoverable and do not require any special handling. However, these errors will result in downgraded recognition performance.

case audioError(: String)

apiError

An error within the API. Normally these errors are recoverable, but they may result in dropped API responses.

case apiError(: String)

parseError

An error within the API message parsing logic. These errors are fully recoverable, but will result in missed speech segment updates.

case parseError(: String)