kodi
|
Public Member Functions | |
CRecentlyAddedJob (int flag) | |
bool | DoWork () override |
Main workhorse function of CJob instances. More... | |
![]() | |
virtual | ~CJob ()=default |
Destructor for job objects. More... | |
virtual const char * | GetType () const |
Function that returns the type of job. More... | |
virtual bool | operator== (const CJob *job) const |
virtual bool | ShouldCancel (unsigned int progress, unsigned int total) const |
Function for longer jobs to report progress and check whether they have been cancelled. More... | |
Static Public Member Functions | |
static bool | UpdateVideo () |
static bool | UpdateMusic () |
static bool | UpdateTotal () |
Additional Inherited Members | |
![]() | |
enum | PRIORITY { PRIORITY_LOW_PAUSABLE = 0, PRIORITY_LOW, PRIORITY_NORMAL, PRIORITY_HIGH, PRIORITY_DEDICATED } |
Priority levels for jobs, specified by clients when adding jobs to the CJobManager. More... | |
|
overridevirtual |
Main workhorse function of CJob instances.
All CJob subclasses must implement this function, performing all processing. Once this function is complete, the OnJobComplete() callback is called, and the job is then destroyed.
Implements CJob.