fixes #280 - MB3 Local metadata fetcher for Music not seeing/using Artist Folder.jpg

This commit is contained in:
Luke Pulverenti
2013-05-27 12:53:10 -04:00
parent 390f165332
commit 9a820efde3
11 changed files with 280 additions and 23 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Controller.Library
{
/// <summary>
/// An interface for tasks that run after the media library scan
/// </summary>
public interface ILibraryPostScanTask
{
/// <summary>
/// Runs the specified progress.
/// </summary>
/// <param name="progress">The progress.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
Task Run(IProgress<double> progress, CancellationToken cancellationToken);
}
}