mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-30 19:54:14 -04:00
13 lines
335 B
C#
13 lines
335 B
C#
namespace API.Interfaces
|
|
{
|
|
public interface ITaskScheduler
|
|
{
|
|
public void ScanLibrary(int libraryId, bool forceUpdate = false);
|
|
|
|
public void CleanupVolumes(int[] volumeIds);
|
|
/// <summary>
|
|
/// Clears the cache directory entirely.
|
|
/// </summary>
|
|
public void ClearCache();
|
|
}
|
|
} |