- From: Domenic Denicola <notifications@github.com>
- Date: Thu, 25 Mar 2021 15:06:29 -0700
- To: whatwg/streams <streams@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 25 March 2021 22:07:34 UTC
@domenic commented on this pull request. > + assert(reader._readRequests.length === 0); + ReadableStreamReaderGenericRelease(reader); + + reader = AcquireReadableStreamBYOBReader(stream); + forwardReaderError(reader); + } + + const readIntoRequest = { + chunkSteps: chunk => { + // This needs to be delayed a microtask because it takes at least a microtask to detect errors (using + // reader._closedPromise below), and we want errors in stream to error both branches immediately. We cannot let + // successful synchronously-available reads get ahead of asynchronously-available errors. + queueMicrotask(() => { + reading = false; + + if (forBranch2 === true) { What are your thoughts on creating separate read into requests for each branch vs. having this forBranch2 thing? -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/streams/pull/1114#pullrequestreview-621617374
Received on Thursday, 25 March 2021 22:07:34 UTC