Re: [fetch] Add "Streams" section. (#119)

> +
> +<p>To <dfn title=concept-construct-fixed-ReadableStream>construct</dfn> a fixed
> +<span title=concept-ReadableStream>ReadableStream</span> with given <var title>chunks</var>,
> +run these steps:
> +
> +<ol>
> +  <li><p>Let <var title>stream</var> be the result of
> +      <span title=concept-construct-ReadableStream>constructing</span> a
> +      <span title=concept-ReadableStream>ReadableStream</span>. Rethrow any exceptions.
> +  <li><p>For each <var title>chunk</var> in <var title>chunks</var>,
> +      <span title=concept-enqueue-ReadableStream>enqueue</span> <var title>chunk</var> into
> +      <var title>stream</var>. Rethrow any exceptions.
> +  <li><p><span title=concept-close-ReadableStream>Close</span> <var title>stream</var>. Rethrow any
> +      exceptions.
> +  <li>Return <var title>stream</var>.
> +</ol></p>

Done.

---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/pull/119/files#r38854603

Received on Monday, 7 September 2015 11:27:19 UTC