Re: [fetch] Aborting a fetch (#27)

> Does this answer?

No, it doesn't answer my concern. The promise returned externally by the `async function` is not at all related to any of the intermediate promises that are `await`'d internally. I don't see how my concern and what you're asserting are related. Can you clarify?

Specifically, how will you conditionally decide to tell this function's promise that it should be of the cancelable kind?

```js
async function foo() {
   // .. what do we do here?
}

foo().then(..).cancel();
```

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

Received on Monday, 30 March 2015 17:37:01 UTC