Arcane OS Docs Development only

Reference

operation.progress

A tracked operation advances or reports its current step.

  • Reference

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

Subscribe

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

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

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

Delivery

Live, future-only operation notification; one operation can emit many updates.

Hosts

Core-backed Microsoft NT, Linux, and development HTTP hosts.

When it fires

A tracked operation advances or reports its current step.

Event data

requestId, operationId, and operationType correlate the operation; progress is its nondecreasing percentage; message describes the current step; details is optional structured progress context.

Reference group

Events

Repository and reviewed source access