web api instance method
BroadcastChannel: postMessage() method
Available in workers
The postMessage() method of the BroadcastChannel interface sends a message,
which can be of any kind of Object,
to each listener in any browsing context with the same origin.
The message is transmitted as a message event
targeted at each BroadcastChannel bound to the channel.
Syntax
postMessage(message)
Parameters
message-
: Data to be sent to the other window. The data is serialized using the structured clone algorithm. This means you can pass a broad variety of data objects safely to the destination window without having to serialize them yourself.
[!NOTE] Execution contexts that can message each other may not be in the same agent cluster, and therefore cannot share memory.
SharedArrayBufferobjects, or buffer views backed by one, cannot be posted across agent clusters. Trying to do so will generate amessageerrorevent containing aDataCloneErrorDOMExceptionon the receiving end.
-
Return value
None.
Exceptions
InvalidStateErrorDOMException- : Thrown if the
BroadcastChannelhas already been closed.
- : Thrown if the
DataCloneErrorDOMException- : Thrown if any part of the input data is not serializable.
Specifications
Browser compatibility
See also
BroadcastChannel, the interface it belongs to.