mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
433254c498
No functional changes
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);
|
|
}
|
|
}
|