|
OpenTV Player SDK For iOS
version 2.30.0
|
Created on 12/08/2014. More...
Go to the source code of this file.
Classes | |
| class | NMPDownload |
| This class aggregates all the information pertaining to the download of a media asset. More... | |
Enumerations | |
| enum | NMPDownloadState { STATE_PREPARING = 0 , STATE_PREPARED = 1 , STATE_RUNNING = 2 , STATE_PAUSED = 3 , STATE_REFRESHING = 4 , STATE_SUCCESSFUL = 100 , STATE_FAILED = 200 } |
| The download state of a NMPDownload object. More... | |
| enum | NMPDownloadError { ERROR_UNKNOWN , ERROR_MISFORMATTED_URI , ERROR_MISFORMATTED_MAINFEST , ERROR_UNSUPPORTED_MAINFEST , ERROR_HTTP_UNHANDLED_CODE , ERROR_HTTP_DATA_ERROR , ERROR_HTTP_TOO_MANY_REDIRECTS , ERROR_INSUFFICIENT_SPACE , ERROR_LIVE_CONTENT_NOT_SUPPORTED , ERROR_HTTP_403 } |
| The download error of a NMPDownload object. More... | |
Created on 12/08/2014.
Copyright(c) 2014 Nagravision S.A, All Rights Reserved. This software is the proprietary information of Nagravision S.A.
Definition in file Download.h.
| enum NMPDownloadError |
The download error of a NMPDownload object.
Definition at line 57 of file Download.h.
| enum NMPDownloadState |
The download state of a NMPDownload object.
The transition table goes as follows :
| FROM | TO |
|---|---|
| STATE_PREPARING | STATE_PREPARED, STATE_FAILED |
| STATE_PREPARED | STATE_RUNNING, STATE_FAILED |
| STATE_RUNNING | STATE_PAUSED, STATE_SUCCESSFUL, STATE_FAILED |
| STATE_PAUSED | STATE_RUNNING, STATE_FAILED |
| STATE_SUCCESSFUL | N/A |
| STATE_FAILED | STATE_PREPARING, STATE_RUNNING |
Definition at line 31 of file Download.h.