blob: f61a94f6ea9b9b9b78f1053220d59969312329fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Model.Services
{
public interface IAsyncStreamWriter
{
Task WriteToAsync(Stream responseStream, CancellationToken cancellationToken);
}
public interface IFileWriter
{
Task WriteToAsync(Stream responseStream, CancellationToken cancellationToken);
}
}
|