- From: Jimmy Wärting <notifications@github.com>
- Date: Sat, 09 Sep 2023 07:34:43 -0700
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Saturday, 9 September 2023 14:34:50 UTC
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