- From: Kenneth Rohde Christiansen <notifications@github.com>
- Date: Wed, 26 Sep 2018 06:33:44 -0700
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 26 September 2018 13:34:07 UTC
I was wondering whether supplying a signal like the AbortController/AbortSignal would make more sense instead of groups. Then you can abort multiple things with the same controller. ``` const controller = new AbortController(); accelerometer.addEventListener('reading', listener, {signal:controller.signal}); controller.abort(); -- 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/dom/pull/469#issuecomment-424716607
Received on Wednesday, 26 September 2018 13:34:07 UTC