Arcane OS Docs Development only

Reference

terminal.error

Android stops a session at its output limit or cannot read one of its output streams.

  • Reference

This focused page is derived from the mechanically checked full event inventory.

Subscribe

const unsubscribe = Arcane.events.on('terminal.error', function handleTerminalError(data) {
    // Read only the documented fields from data here.
    console.info('Received terminal.error.');
});

// Stop listening when this page no longer needs the event.
function stopListeningForTerminalError() {
    unsubscribe();
}

globalThis.addEventListener('pagehide', stopListeningForTerminalError, {once: true});

Delivery

Live, future-only terminal session notification.

Hosts

Android Arcane Terminal hosts.

When it fires

Android stops a session at its output limit or cannot read one of its output streams.

Event data

sessionId identifies the terminal session; message explains the output-limit or stream-reading failure.

Reference group

Events

Repository and reviewed source access