mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-24 11:06:56 +00:00
Make ILiveStream an IDisposable
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
|
||||
#pragma warning disable CA1711, CS1591
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
@@ -9,7 +10,7 @@ using MediaBrowser.Model.Dto;
|
||||
|
||||
namespace MediaBrowser.Controller.Library
|
||||
{
|
||||
public interface ILiveStream
|
||||
public interface ILiveStream : IDisposable
|
||||
{
|
||||
int ConsumerCount { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user