Liking cljdoc? Tell your friends :D

web.service-workers.Client

The Client interface represents an executable context such as web.workers.Worker, or a web.workers.SharedWorker. web.Window are represented by the more-specific web.service-workers.WindowClient. can get Client/WindowClient objects from methods such as Clients.matchAll() Clients.get().

The Client interface represents an executable context such as
`web.workers.Worker`, or a `web.workers.SharedWorker`. `web.Window`
are represented by the more-specific `web.service-workers.WindowClient`.
can get Client/WindowClient objects from methods such as `Clients.matchAll()`
`Clients.get()`.
raw docstring

frame-typecljs

(frame-type this)

Property.

[Read Only] [Experimental]

The frameType read-only property of the web.service-workers.Client indicates the type of browsing context of the current web.service-workers.Client. value can be one of auxiliary, top-level, nested, or none.

var myFrameType = Client.frameType;

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

Property.

[Read Only]
[Experimental]

The frameType read-only property of the `web.service-workers.Client`
indicates the type of browsing context of the current `web.service-workers.Client`.
value can be one of auxiliary, top-level, nested, or none.

`var myFrameType = Client.frameType;`

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

idcljs

(id this)

Property.

[Read Only]

The id read-only property of the web.service-workers.Client returns the universally unique identifier of the web.service-workers.Client

var clientId = Client.id;

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

Property.

[Read Only]

The id read-only property of the `web.service-workers.Client`
returns the universally unique identifier of the `web.service-workers.Client`

`var clientId = Client.id;`

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

post-messagecljs

(post-message this & args)

Method.

The postMessage() method of web.service-workers.Client allows service worker to send a message to a client (a web.Window, or web.workers.SharedWorker). The message is received in the event on navigator.serviceWorker.

Client.postMessage(message[, transfer]);

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

Method.

The postMessage() method of `web.service-workers.Client` allows
service worker to send a message to a client (a `web.Window`,
or `web.workers.SharedWorker`). The message is received in the
event on `navigator.serviceWorker`.

`Client.postMessage(message[, transfer]);`

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

typecljs

(type this)

Property.

[Read Only]

The type read-only property of the web.service-workers.Client indicates the type of client the service worker is controlling.

var myClientType = Client.type;

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

Property.

[Read Only]

The type read-only property of the `web.service-workers.Client`
indicates the type of client the service worker is controlling.

`var myClientType = Client.type;`

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

urlcljs

(url this)

Property.

[Read Only]

The url read-only property of the web.service-workers.Client returns the URL of the current service worker client.

var clientUrl = Client.url;

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

Property.

[Read Only]

The url read-only property of the `web.service-workers.Client`
returns the URL of the current service worker client.

`var clientUrl = Client.url;`

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

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

× close