sendToFrame
abstract fun sendToFrame(frameId: JsTuple2<Double, Double>, channel: String, vararg args: Any?): Promise<Void>(source)
Send an asynchronous message to renderer process via channel
, you can also send arbitrary arguments. The renderer process can handle the message by listening to the channel
event with the ipcRenderer
module.
See webContents.sendToFrame for examples.