Closed
Description
The current pause
process consist into aborting all ongoing XHR object. Conversely resume
call Flow.upload()
again which goes over each pending chunk.
In the case of ReadableStream we can not expect to read()
twice a regular file (as expected by FlowChunk.send()
).
A possible implementation could conserve the XHR payload in order to recreate it again (instead of setting FlowChunk
's XHR to null
)