Re: [whatwg/fetch] Resumable File Uploads (Issue #1626)

kind of interesting... should the request happen in the background then like using background fetch?
what if someone wants to manually stop/pause and resume by themself?

You would have to create a Request first before you could do the actual request.
```js
req = new Request(url, { resumable: true, ... })
fetch(req)
req.pause() || req.stop()
req.resume() // initiate a new request.
```


-- 
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/1626#issuecomment-1712526100
You are receiving this because you are subscribed to this thread.

Message ID: <whatwg/fetch/issues/1626/1712526100@github.com>

Received on Saturday, 9 September 2023 14:34:50 UTC