![]() |
Kodi Documentation 18.0
Kodi is an open source media player and entertainment hub.
|
Video library job implementation for marking items as watched/unwatched. More...
#include <VideoLibraryMarkWatchedJob.h>
Public Member Functions | |
CVideoLibraryMarkWatchedJob (const CFileItemPtr &item, bool mark) | |
Creates a new video library scanning job. More... | |
~CVideoLibraryMarkWatchedJob () override | |
const char * | GetType () const override |
Function that returns the type of job. More... | |
bool | operator== (const CJob *job) const override |
![]() | |
~CVideoLibraryJob () override | |
virtual bool | CanBeCancelled () const |
Whether the job can be cancelled or not. More... | |
virtual bool | Cancel () |
Tries to cancel the running job. More... | |
bool | DoWork () override |
Main workhorse function of CJob instances. More... | |
![]() | |
CJob () | |
virtual | ~CJob ()=default |
Destructor for job objects. More... | |
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... | |
Protected Member Functions | |
bool | Work (CVideoDatabase &db) override |
Worker method to be implemented by an actual implementation. More... | |
![]() | |
CVideoLibraryJob () | |
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... | |
Video library job implementation for marking items as watched/unwatched.
CVideoLibraryMarkWatchedJob::CVideoLibraryMarkWatchedJob | ( | const CFileItemPtr & | item, |
bool | mark | ||
) |
Creates a new video library scanning job.
[in] | item | Item to be marked as watched/unwatched |
[in] | mark | Whether to mark the item as watched or unwatched |
|
overridedefault |
|
inlineoverridevirtual |
Function that returns the type of job.
CJob subclasses may optionally implement this function to specify the type of job. This is useful for the CJobManager::AddLIFOJob() routine, which preempts similar jobs with the new job.
Reimplemented from CVideoLibraryJob.
|
overridevirtual |
Reimplemented from CVideoLibraryJob.
|
overrideprotectedvirtual |
Worker method to be implemented by an actual implementation.
[in] | db | Already open video database to be used for interaction |
Implements CVideoLibraryJob.