aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs
diff options
context:
space:
mode:
authorsoftworkz <softworkz@hotmail.com>2016-08-05 06:08:11 +0200
committersoftworkz <softworkz@hotmail.com>2016-08-07 02:00:36 +0200
commit433254c498d2e43acfd34e5c4fcee2fdcc2e767b (patch)
treee04ddf9e4202800f5f4658d0bfe9e2f01675bfeb /MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs
parent894d87fabb812152c76443afcf1739fda7c578ff (diff)
Async stream handling: Use interface instead of Func<Stream,Task>
No functional changes
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs')
-rw-r--r--MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs
index c0a2a5eb3..f234674d8 100644
--- a/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs
+++ b/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs
@@ -704,9 +704,14 @@ namespace MediaBrowser.Server.Implementations.HttpServer
throw error;
}
- public object GetAsyncStreamWriter(Func<Stream, Task> streamWriter, IDictionary<string, string> responseHeaders = null)
+ public object GetAsyncStreamWriter(IAsyncStreamSource streamSource)
{
- return new AsyncStreamWriterFunc(streamWriter, responseHeaders);
+ if (streamSource as IHttpResult != null)
+ {
+ return new AsyncStreamWriterEx(streamSource);
+ }
+
+ return new AsyncStreamWriter(streamSource);
}
}
} \ No newline at end of file