Reference
operation.completed
A tracked operation finishes successfully, including success with warnings.
This focused page is derived from the mechanically checked full event inventory.
Subscribe
const unsubscribe = Arcane.events.on('operation.completed', function handleOperationCompleted(data) {
// Read only the documented fields from data here.
console.info('Received operation.completed.');
});
// Stop listening when this page no longer needs the event.
function stopListeningForOperationCompleted() {
unsubscribe();
}
globalThis.addEventListener('pagehide', stopListeningForOperationCompleted, {once: true});
Delivery
Live, future-only terminal operation notification.
Hosts
Core-backed Microsoft NT, Linux, and development HTTP hosts.
When it fires
A tracked operation finishes successfully, including success with warnings.
Event data
requestId, operationId, and operationType correlate the operation; result is its public result; credentials carries any operation-issued credentials and must be treated as sensitive; details is final progress context; warningCount counts warnings; message summarizes completion; time is the completion timestamp.