- From: James M Snell <notifications@github.com>
- Date: Tue, 09 Mar 2021 09:56:11 -0800
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 9 March 2021 17:56:23 UTC
Just to offer a different perspective on this... in Node.js (which is, of course, a different environment than browsers) we have more of a notion of objects that can be shared across workers -- much like `SharedArrayBuffer` but for other host objects we provide. In that environment, we actually *could* actually have two different `AbortSignal` objects (one in each thread) sharing the same underlying backend such that `signal.aborted === signal.aborted`. (It's not implemented this way *today*... but we *could*). -- 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/issues/948#issuecomment-794234008
Received on Tuesday, 9 March 2021 17:56:23 UTC