invoke MethodStatic
Send a message to the backend via channel
and expect a result asynchronously. The handler must be established on the backend via BackendIpc.handle
invoke(channel: string, ...args: any[]): Promise<any>
@see Electron ipcRenderer.invoke documentation for details. Note that this interface may be implemented via Electron for desktop apps, or via WebSockets for mobile or web-based Ipc connections. In either case, the Electron documentation provides the specifications for how it works.
@note args
are serialized with the Structured Clone Algorithm, so only
primitive types and ArrayBuffers
are allowed.
Parameter | Type | Description |
---|---|---|
channel | string | The name of the channel for the method. |
...args | any[] |
Returns - Promise
Defined in
Last Updated: 13 November, 2024
Found something wrong, missing, or unclear on this page?Raise an issue in our repo.