AudioWorkletProcessor.port
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The read-only port
property of the AudioWorkletProcessor
interface returns the associated MessagePort
. It can be used to communicate between the processor and the AudioWorkletNode
to which it belongs.
Note: The port at the other end of the channel is available under the port
property of the node.
Syntax
AudioWorkletProcessorInstance.port;
Value
The MessagePort
object that is connecting the AudioWorkletProcessor
and the associated AudioWorkletNode
.
Examples
See AudioWorkletNode.port
for example code.
Specifications
Specification |
---|
Web Audio API # dom-audioworkletprocessor-port |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
port |
64 |
79 |
76 |
No |
? |
No |
64 |
64 |
79 |
? |
No |
9.0 |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletProcessor/port