using System;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Controller.Library
{
    /// 
    /// An interface for tasks that run after the media library scan.
    /// 
    public interface ILibraryPostScanTask
    {
        /// 
        /// Runs the specified progress.
        /// 
        /// The progress.
        /// The cancellation token.
        /// Task.
        Task Run(IProgress progress, CancellationToken cancellationToken);
    }
}