using System.Threading; using System.Threading.Tasks; namespace MediaBrowser.Controller.MediaEncoding { public interface IEncodingManager { /// /// Refreshes the chapter images. /// /// The options. /// The cancellation token. /// Task{System.Boolean}. Task RefreshChapterImages(ChapterImageRefreshOptions options, CancellationToken cancellationToken); } }