Interface: LuaCellStatus
Defined in: src/batteries/orchestration/cells/lua/index.ts:241
Inspectable runtime status of a Lua cell instance: which enforcement layers are live and which were probed away at construction. Exposed for diagnostics and for tests that need to assert the guarantee without triggering a runaway script.
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
guarantee | readonly | LuaCellGuarantee | The enforcement guarantee actually being delivered. | src/batteries/orchestration/cells/lua/index.ts:243 |
instructionLimit | readonly | number | null | The instruction budget the count hook enforces, if the hook is live; else null. | src/batteries/orchestration/cells/lua/index.ts:245 |
memoryCeilingBytes | readonly | number | null | The memory ceiling the allocator cap enforces, if the cap is live; else null. | src/batteries/orchestration/cells/lua/index.ts:247 |
timeoutMs | readonly | number | The wall-clock timeout the watchdog enforces. Always live. | src/batteries/orchestration/cells/lua/index.ts:249 |