MessagePort: close() method
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2015.
Note: This feature is available in Web Workers.
The close()
method of the MessagePort
interface disconnects the port, so it is no longer active. This stops the flow of
messages to that port.
Syntax
js
close()
Parameters
None.
Return value
None (undefined
).
Examples
In the following code block, you can see a handleMessage
handler function,
run when a message is sent back to this document using
EventTarget.addEventListener
.
js
channel.port1.addEventListener("message", handleMessage, false);
function handleMessage(e) {
para.innerHTML = e.data;
textInput.value = "";
}
channel.port1.start();
You could stop messages being sent at any time using
js
channel.port1.close();
Specifications
Specification |
---|
HTML # dom-messageport-close-dev |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
close |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.