MessageChannel : Object A message channel allows sending messages between contexts such as two %%/Worker|Workers%% by %%/Window#postMessage|transferring%% the ports to the workers. Spec: https://html.spec.whatwg.org/multipage/web-messaging.html#messageport ---- new MessageChannel() : MessageChannel ---- instance.port1 : MessagePort The first port the channel. ReadOnly: true ---- instance.port2 : MessagePort The second port the channel. ReadOnly: true