deno / 1.23.2 / ~ / messagechannel.html /

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–2022 the Deno authors
https://doc.deno.land/deno/stable/~/MessageChannel