Kavita/API/Interfaces/ITaskScheduler.cs

9 lines
264 B
C#

namespace API.Interfaces
{
public interface ITaskScheduler
{
void ScanLibrary(int libraryId, bool forceUpdate = false);
void CleanupChapters(int[] chapterIds);
void RefreshMetadata(int libraryId, bool forceUpdate = true);
}
}