| 
    Kodi Documentation 22.0
    
   Kodi is an open source media player and entertainment hub. 
   | 
 
Video library job implementation for resetting a resume point. More...
#include <VideoLibraryResetResumePointJob.h>
  
Public Member Functions | |
| CVideoLibraryResetResumePointJob (const std::shared_ptr< CFileItem > &item) | |
| Creates a new job for resetting a given item's resume point.   | |
| ~CVideoLibraryResetResumePointJob () override=default | |
| const char * | GetType () const override | 
| Function that returns the type of job.   | |
| bool | Equals (const CJob *job) const override | 
| Function that compares this job instance with the given job instance.   | |
  Public Member Functions inherited from CVideoLibraryJob | |
| ~CVideoLibraryJob () override | |
| virtual bool | CanBeCancelled () const | 
| Whether the job can be cancelled or not.   | |
| virtual bool | Cancel () | 
| Tries to cancel the running job.   | |
| bool | DoWork () override | 
| Main workhorse function of CJob instances.   | |
  Public Member Functions inherited from CJob | |
| CJob ()=default | |
| virtual | ~CJob ()=default | 
| Destructor for job objects.   | |
| void | SetProgressCallback (CJobManager *callback) | 
| Function to set a callback for jobs to report progress.   | |
| virtual bool | ShouldCancel (unsigned int progress, unsigned int total) const | 
| Function for longer jobs to report progress and check whether they have been cancelled.   | |
Protected Member Functions | |
| bool | Work (CVideoDatabase &db) override | 
| Worker method to be implemented by an actual implementation.   | |
  Protected Member Functions inherited from CVideoLibraryJob | |
| CVideoLibraryJob () | |
Additional Inherited Members | |
  Public Types inherited from CJob | |
| 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 resetting a resume point.
| CVideoLibraryResetResumePointJob::CVideoLibraryResetResumePointJob | ( | const std::shared_ptr< CFileItem > & | item | ) | 
Creates a new job for resetting a given item's resume point.
| [in] | item | Item for that the resume point shall be reset. | 
      
  | 
  overridedefault | 
Function that compares this job instance with the given job instance.
CJob subclasses may optionally implement this to provide customized comparison functionality. This is useful for the CJobManager::AddJob() routine, which preempts similar jobs with the new job.
| job | the job to compared with this CJob instance. | 
Reimplemented from CJob.
      
  | 
  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::AddJob() routine, which preempts similar jobs with the new job.
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.