25 lines
790 B
JavaScript
25 lines
790 B
JavaScript
/**
|
|
* unit-runtime.ts — Barrel re-export for the UOK unit-runtime projection.
|
|
*
|
|
* The implementation has moved into the UOK subsystem under uok/unit-runtime.js.
|
|
* This file preserves the original public API so external consumers
|
|
* continue to work without changes.
|
|
*/
|
|
export {
|
|
clearRunawayRecoveredRuntimeRecords,
|
|
clearUnitRuntimeRecord,
|
|
decideUnitRuntimeDispatch,
|
|
formatExecuteTaskRecoveryStatus,
|
|
getUnitRuntimeState,
|
|
inspectExecuteTaskDurability,
|
|
isSyntheticUnitRuntime,
|
|
isTerminalUnitRuntimeStatus,
|
|
listUnitRuntimeRecords,
|
|
readUnitRuntimeRecord,
|
|
reconcileDurableCompleteUnitRuntimeRecords,
|
|
reconcileStaleCompleteSliceRecords,
|
|
UNIT_RUNTIME_STATUSES,
|
|
UNIT_RUNTIME_TERMINAL_STATUSES,
|
|
UNIT_RUNTIME_TRANSITIONS,
|
|
writeUnitRuntimeRecord,
|
|
} from "./uok/unit-runtime.js";
|