jellyfin/MediaBrowser.Model/Services/IAsyncStreamWriter.cs
2017-03-12 15:27:26 -04:00

17 lines
389 B
C#

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);
}
}