You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`webui_return_string()`, `webui_return_int()`, `webui_return_float()`, `webui_return_bool()`|`Call.reply()`, `Call.replyInt()`, `Call.replyFloat()`, and `Call.replyBool()`. |
345
344
|`webui_set_config(asynchronous_response)`|`Call.deferReply()` transfers the response to a bounded, owned, one-shot `PendingReply`. |
345
+
|`webui_set_config(ui_event_blocking)`, `webui_set_event_blocking()`|`WindowOptions.event_mode` and `Window.setEventMode()` select serial or bounded concurrent binding and event execution. |
346
346
|`webui_run()`, `webui_script()`|`Window.run()` and `Window.eval()`. |
347
347
|`webui_run_client()`, `webui_script_client()`|`Client.run()` and `Client.eval()`. |
348
348
|`webui_close_client()`, `webui_navigate_client()`, `webui_send_raw_client()`|`Client.close()`, `Client.navigate()`, and `Client.sendRaw()`. |
@@ -385,14 +385,11 @@ methods, and the public browser bridge surface.
385
385
386
386
### Handler and event lifecycle
387
387
388
-
- Add per-window serialized or concurrent event execution.
389
388
- Add optional wait-for-connection behavior and a connection timeout.
390
389
- Add a caller-provided logger.
391
-
- Expose only stable event metadata that has no C ABI dependency.
392
390
393
-
This completes the remaining `webui_set_config()` behavior,
394
-
`webui_set_event_blocking()`, `webui_set_timeout()`, and
395
-
`webui_set_logger()`.
391
+
This completes `webui_set_config(show_wait_connection)`,
0 commit comments