* Strictly monotonic millisecond counter. Never overridden. Used for * the 1-second poll cadence and the lock-heartbeat liveness window.
()
| 42 | * the 1-second poll cadence and the lock-heartbeat liveness window. |
| 43 | */ |
| 44 | monoNowMs(): number; |
| 45 | } |
| 46 | |
| 47 | const systemMonoNowMs = (): number => Number(process.hrtime.bigint() / 1_000_000n); |