IEncodingManager.cs 545 B

12345678910111213141516
  1. using System.Threading;
  2. using System.Threading.Tasks;
  3. namespace MediaBrowser.Controller.MediaEncoding
  4. {
  5. public interface IEncodingManager
  6. {
  7. /// <summary>
  8. /// Refreshes the chapter images.
  9. /// </summary>
  10. /// <param name="options">The options.</param>
  11. /// <param name="cancellationToken">The cancellation token.</param>
  12. /// <returns>Task{System.Boolean}.</returns>
  13. Task<bool> RefreshChapterImages(ChapterImageRefreshOptions options, CancellationToken cancellationToken);
  14. }
  15. }