Reference
transport.ready
The renderer initializes the bridge and selects its available transport.
This focused page is derived from the mechanically checked full event inventory.
Subscribe
const unsubscribe = Arcane.events.on('transport.ready', function handleTransportReady(data) {
// Read only the documented fields from data here.
console.info('Received transport.ready.');
});
// Stop listening when this page no longer needs the event.
function stopListeningForTransportReady() {
unsubscribe();
}
globalThis.addEventListener('pagehide', stopListeningForTransportReady, {once: true});
Delivery
Durable completion. The first payload is frozen; a late when() subscriber receives an asynchronous replay.
Hosts
Every initialized Arcane transport: Microsoft NT WebView2, Linux WebKitGTK, Android WebView, and development HTTP.
When it fires
The renderer initializes the bridge and selects its available transport.
Event data
protocol is the selected wire-protocol identifier; transport is webview2, webkitgtk, android-webview, or development-http.