mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04: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);
 | |
|     }
 | |
| }
 |