Add a minimalistic duck typing based stream representation.
This commit is contained in:
parent
a9905ddcd9
commit
4c6f26bd00
2 changed files with 19 additions and 1 deletions
|
@ -13,6 +13,7 @@ import std.format : format;
|
|||
import std.functional : toDelegate;
|
||||
import std.socket : AddressFamily, UnknownAddress;
|
||||
import vibe.core.log;
|
||||
import vibe.core.stream;
|
||||
import vibe.internal.async;
|
||||
import core.time : Duration;
|
||||
|
||||
|
@ -441,9 +442,10 @@ mixin(tracer);
|
|||
mixin(tracer);
|
||||
}
|
||||
void finalize() {}
|
||||
void write(InputStream)(InputStream stream, ulong nbytes = 0) { writeDefault(stream, nbytes); }
|
||||
void write(InputStream)(InputStream stream, ulong nbytes = 0) if (isInputStream!InputStream) { writeDefault(stream, nbytes); }
|
||||
|
||||
private void writeDefault(InputStream)(InputStream stream, ulong nbytes = 0)
|
||||
if (isInputStream!InputStream)
|
||||
{
|
||||
import std.algorithm.comparison : min;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue