mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 15:33:03 +03: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);
|
|||
|
|
}
|
|||
|
|
}
|