Liking cljdoc? Tell your friends :D

web.dom.AbortController

The AbortController interface represents a controller object allows you to abort one or more DOM requests as and when desired.

The AbortController interface represents a controller object
allows you to abort one or more DOM requests as and when desired.
raw docstring

abortcljs

(abort this)

Method.

The abort() method of the web.dom.AbortController interface a DOM request (e.g. a Fetch request) before it has completed. is able to abort fetch requests, consumption of any response and streams.

controller.abort();

See also: https://developer.mozilla.org/en-US/docs/Web/API/AbortController/abort

Method.

The abort() method of the `web.dom.AbortController` interface
a DOM request (e.g. a Fetch request) before it has completed.
is able to abort fetch requests, consumption of any response
and streams.

`controller.abort();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AbortController/abort`
sourceraw docstring

constructorcljs

Constructor.

The AbortController() constructor creates a new AbortController object instance.

None.

See also: https://developer.mozilla.org/en-US/docs/Web/API/AbortController/AbortController

Constructor.

The AbortController() constructor creates a new AbortController object instance.

None.

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AbortController/AbortController`
sourceraw docstring

set-signal!cljs

(set-signal! this val)

Property.

The signal read-only property of the web.dom.AbortController returns an web.AbortSignal object instance, which can be used communicate with/abort a DOM request as desired.

var signal = abortController.signal;

See also: https://developer.mozilla.org/en-US/docs/Web/API/AbortController/signal

Property.

The signal read-only property of the `web.dom.AbortController`
returns an `web.AbortSignal` object instance, which can be used
communicate with/abort a DOM request as desired.

`var signal = abortController.signal;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AbortController/signal`
sourceraw docstring

signalcljs

(signal this)

Property.

The signal read-only property of the web.dom.AbortController returns an web.AbortSignal object instance, which can be used communicate with/abort a DOM request as desired.

var signal = abortController.signal;

See also: https://developer.mozilla.org/en-US/docs/Web/API/AbortController/signal

Property.

The signal read-only property of the `web.dom.AbortController`
returns an `web.AbortSignal` object instance, which can be used
communicate with/abort a DOM request as desired.

`var signal = abortController.signal;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/AbortController/signal`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close