Re: [fetch] Add option to automatically abort response stream if the data stopped arriving for longer than a specified time (#180)

Or what would make more sense, and fit with the extensible web ethos of low level APIs first, is accepting an object for `timeout` allowing numerous timeouts to be specified

e.g.

```js
timeout: {
   firstByte: 700,
   headers: 1000,
   fullContent: 2000,
   interPackage: 50
}
```

with `timeout: 2000` being an alias for `timeout: {content: 2000}`

---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/180#issuecomment-190103647

Received on Monday, 29 February 2016 08:40:15 UTC