W3cubDocs

/Deno

MessageChannel

The MessageChannel interface of the Channel Messaging API allows us to create a new message channel and send data through it via its two MessagePort properties.

class MessageChannel {
constructor();
readonly port1: MessagePort;
readonly port2: MessagePort;
}

Constructors

new MessageChannel()

Properties

port1: MessagePort
port2: MessagePort

© 2018–2021 the Deno authors
https://doc.deno.land/deno/stable/~/MessageChannel