You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
667 B
20 lines
667 B
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
public interface IMetadataContainer
|
|
{
|
|
/// <summary>
|
|
/// Refreshes all metadata.
|
|
/// </summary>
|
|
/// <param name="refreshOptions">The refresh options.</param>
|
|
/// <param name="progress">The progress.</param>
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
/// <returns>Task.</returns>
|
|
Task RefreshAllMetadata(MetadataRefreshOptions refreshOptions, IProgress<double> progress, CancellationToken cancellationToken);
|
|
}
|
|
}
|