IpcRenderer
Functions
Link copied to clipboard
Alias for ipcRenderer.on
.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract fun postMessage(channel: String, message: Any?, transfer: ReadonlyArray<MessagePort> = definedExternally)
Send a message to the main process, optionally transferring ownership of zero or more MessagePort
objects.
Link copied to clipboard
Removes all listeners, or those of the specified channel
.
Link copied to clipboard
Removes the specified listener
from the listener array for the specified channel
.
Link copied to clipboard
Send an asynchronous message to the main process via channel
, along with arguments. Arguments will be serialized with the Structured Clone Algorithm, just like window.postMessage
, so prototype chains will not be included. Sending Functions, Promises, Symbols, WeakMaps, or WeakSets will throw an exception.
Link copied to clipboard
Like ipcRenderer.send
but the event will be sent to the <webview>
element in the host page instead of the main process.
Link copied to clipboard