AbortSignal
EventTarget → js.html.AbortSignal (extern class)
The AbortSignal
interface represents a signal object that allows you to communicate with a DOM request (such as a Fetch) and abort it if required via an AbortController
object.
Documentation AbortSignal by Mozilla Contributors, licensed under CC-BY-SA 2.5.
See:
Instance Members
aborted: Bool
A Boolean
that indicates whether the request(s) the signal is communicating with is/are aborted (true
) or not (false
).
onabort: haxe.Function
Invoked when an abort_(dom_abort_api)
event fires, i.e. when the DOM request(s) the signal is communicating with is/are aborted.