- From: Jake Archibald <notifications@github.com>
- Date: Tue, 11 Apr 2017 01:57:27 -0700
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 11 April 2017 08:57:59 UTC
jakearchibald 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>
The signal that appears on request objects will at some point be a `FetchSignal`. Is it fine for it to be a superclass of that initially?
-- 
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#discussion_r110847661
Received on Tuesday, 11 April 2017 08:57:59 UTC