Package com.caplin.streamlink
Interface CommandErrorEvent
- All Superinterfaces:
CommandResultEvent
Provides error information for commands.
The CommandErrorEvent
will be provided on a onCommandError
callback to a CommandListener
.
-
Method Summary
Modifier and TypeMethodDescriptiongetError()
Returns theCommandErrorType
of the event.Returns theErrorReason
of the event.Methods inherited from interface com.caplin.streamlink.CommandResultEvent
getPayload
-
Method Details
-
getError
CommandErrorType getError()Returns the
CommandErrorType
of the event.- Returns:
- The type of error.
-
getErrorReason
ErrorReason getErrorReason()Returns the
ErrorReason
of the event.- Returns:
- The error reason.
-