package js.html
extends EventTarget
Available on js
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 also:
read onlyaborted:Bool
A Boolean
that indicates whether the request(s) the signal is communicating with is/are aborted (true
) or not (false
).
onabort: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.
© 2005–2020 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/js/html/AbortSignal.html