2016-10-25 19:02:04 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IAsyncStreamWriter
|
|
|
|
|
{
|
|
|
|
|
Task WriteToAsync(Stream responseStream, CancellationToken cancellationToken);
|
|
|
|
|
}
|
2017-03-12 19:27:26 +00:00
|
|
|
|
|
|
|
|
|
public interface IFileWriter
|
|
|
|
|
{
|
|
|
|
|
Task WriteToAsync(Stream responseStream, CancellationToken cancellationToken);
|
|
|
|
|
}
|
2016-10-25 19:02:04 +00:00
|
|
|
|
}
|