Re: [whatwg/fetch] WIP: Cancelation (#523)

annevk commented on this pull request.



> +<pre class=idl>
+[Exposed=(Window,Worker)]
+interface FetchSignal : CancelationSignal {
+  // Nothing additional exposed here yet
+};
+</pre>
+
+<h3 id=fetch-controller>Fetch controller</h3>
+
+<pre class=idl>
+[Constructor(), Exposed=(Window,Worker)]
+interface FetchController : CancelationController {
+  [SameObject] readonly attribute FetchSignal signal;
+  // Nothing additional exposed here yet
+};
+</pre>

I suggest we remove these two interfaces if we're not actually going to use them. We can add them when we add functionality that requires them.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/pull/523#pullrequestreview-31727363

Received on Sunday, 9 April 2017 15:53:59 UTC