|
@@ -2,6 +2,7 @@
|
|
|
|
|
|
#pragma warning disable CA1711, CS1591
|
|
#pragma warning disable CA1711, CS1591
|
|
|
|
|
|
|
|
+using System;
|
|
using System.IO;
|
|
using System.IO;
|
|
using System.Threading;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using System.Threading.Tasks;
|
|
@@ -9,7 +10,7 @@ using MediaBrowser.Model.Dto;
|
|
|
|
|
|
namespace MediaBrowser.Controller.Library
|
|
namespace MediaBrowser.Controller.Library
|
|
{
|
|
{
|
|
- public interface ILiveStream
|
|
|
|
|
|
+ public interface ILiveStream : IDisposable
|
|
{
|
|
{
|
|
int ConsumerCount { get; set; }
|
|
int ConsumerCount { get; set; }
|
|
|
|
|