mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			545 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			545 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Threading;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.MediaEncoding
 | 
						|
{
 | 
						|
    public interface IEncodingManager
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Refreshes the chapter images.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="options">The options.</param>
 | 
						|
        /// <param name="cancellationToken">The cancellation token.</param>
 | 
						|
        /// <returns>Task{System.Boolean}.</returns>
 | 
						|
        Task<bool> RefreshChapterImages(ChapterImageRefreshOptions options, CancellationToken cancellationToken);
 | 
						|
    }
 | 
						|
}
 |