mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			571 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			571 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#nullable disable
 | 
						|
 | 
						|
#pragma warning disable CA1711, CS1591
 | 
						|
 | 
						|
using System.Threading;
 | 
						|
using System.Threading.Tasks;
 | 
						|
using MediaBrowser.Model.Dto;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Library
 | 
						|
{
 | 
						|
    public interface ILiveStream
 | 
						|
    {
 | 
						|
        int ConsumerCount { get; set; }
 | 
						|
 | 
						|
        string OriginalStreamId { get; set; }
 | 
						|
 | 
						|
        string TunerHostId { get; }
 | 
						|
 | 
						|
        bool EnableStreamSharing { get; }
 | 
						|
 | 
						|
        MediaSourceInfo MediaSource { get; set; }
 | 
						|
 | 
						|
        string UniqueId { get; }
 | 
						|
 | 
						|
        Task Open(CancellationToken openCancellationToken);
 | 
						|
 | 
						|
        Task Close();
 | 
						|
    }
 | 
						|
}
 |