BroadcastChannel

open external class BroadcastChannel(name: String) : EventTarget

Exposes the JavaScript BroadcastChannel to Kotlin

Constructors

Link copied to clipboard

Functions

Link copied to clipboard
fun addEventListener(    type: String,     callback: (Event) -> Unit?,     options: dynamic = definedExternally)
fun addEventListener(    type: String,     callback: EventListener?,     options: dynamic = definedExternally)
Link copied to clipboard
fun close()
Link copied to clipboard
fun dispatchEvent(event: Event): Boolean
Link copied to clipboard
fun postMessage(message: Any?)
Link copied to clipboard
fun removeEventListener(    type: String,     callback: (Event) -> Unit?,     options: dynamic = definedExternally)
fun removeEventListener(    type: String,     callback: EventListener?,     options: dynamic = definedExternally)

Properties

Link copied to clipboard
open val name: String
Link copied to clipboard
var onmessage: (MessageEvent) -> dynamic?