mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -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);
|
|
}
|
|
}
|