Re: [ServiceWorker] Backpressure on fetch integrated with Streams (#452)

Created a matrix. Still updating.

Condition | s.read() | res.text() | respondWith(res) | new Response(res) | cache.put(res) | res.clone()
----------|---------------|------------|------------------|-------------------|---------------|------------
After stream.read() | Y | Y | Y | ? | ? | Y
res.text() ongoing | N | N | N | N | N | N
After res.text() finish | N/A | ? | ? | ? | ? | ?
After respondWith(res) | N | N | N | N | N | N
After new Response(res) | N | N | N | N | N | N
After cache.put(res) | N | N | N | N | N | N
After res.clone() | N | N | N | N | N | N





---
Reply to this email directly or view it on GitHub:
https://github.com/slightlyoff/ServiceWorker/issues/452#issuecomment-70795093

Received on Wednesday, 21 January 2015 07:24:52 UTC