mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			405 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			405 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.Interfaces
 | 
						|
{
 | 
						|
    public interface ITaskScheduler
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// For use on Server startup
 | 
						|
        /// </summary>
 | 
						|
        void ScheduleTasks();
 | 
						|
        void ScanLibrary(int libraryId, bool forceUpdate = false);
 | 
						|
        void CleanupChapters(int[] chapterIds);
 | 
						|
        void RefreshMetadata(int libraryId, bool forceUpdate = true);
 | 
						|
        void CleanupTemp();
 | 
						|
    }
 | 
						|
} |