Error handling
The plugin provides an error handling events via which the App can be provided with details of errors that have occurred.
There are two events which can be used by App to get notified when the player incurs an error:
Critical Errors
Any errors where the player cannot continue playback are triggered through the onError
event.
See the React Native SDK APIs for full details - especially in this case the onError
event and the error codes that can be reported with that event.
HTTP Errors
Any errors occurring due to failure of HTTP requests are triggered through onHttpError
event. These errors do not necessarily result in failure of playback. However, when this error finally results in a critical error, the onError
shall also be triggered in addition to onHttpError
.
See the React Native SDK APIs for full details - especially in this case the onHttpError
event.
Critical Error Types
There are several error types that classify the set of errors into different categories of Player functionality, for example
Media type error
DRM type error
SSM type error
The full list of errors and their types is documented in the React Native SDK API documentation.