Reference
operation.started
A tracked Core operation is created.
This focused page is derived from the mechanically checked full event inventory.
Subscribe
const unsubscribe = Arcane.events.on('operation.started', function handleOperationStarted(data) {
// Read only the documented fields from data here.
console.info('Received operation.started.');
});
// Stop listening when this page no longer needs the event.
function stopListeningForOperationStarted() {
unsubscribe();
}
globalThis.addEventListener('pagehide', stopListeningForOperationStarted, {once: true});
Delivery
Live, future-only operation notification.
Hosts
Core-backed Microsoft NT, Linux, and development HTTP hosts.
When it fires
A tracked Core operation is created.
Event data
requestId correlates the initiating API request; operationId identifies the tracked operation; operationType names its kind; time is the operation start timestamp.