mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 20:09:03 -07:00
12 lines
256 B
C#
12 lines
256 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);
|
|||
|
}
|
|||
|
}
|