mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-18 20:43:02 -05:00
19 lines
456 B
C#
19 lines
456 B
C#
using ServiceStack.Web;
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
{
|
|
/// <summary>
|
|
/// Interface IAsyncStreamSource
|
|
/// Enables asynchronous writing to http resonse streams
|
|
/// </summary>
|
|
public interface IAsyncStreamSource
|
|
{
|
|
/// <summary>
|
|
/// Asynchronously write to the response stream.
|
|
/// </summary>
|
|
Task WriteToAsync(Stream responseStream);
|
|
}
|
|
}
|