UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

14 lines (8 loc) 281 B
// ets_tracing: off import "../../../Operator/index.js" import { AtomicNumber } from "../../../Support/AtomicNumber/index.js" export type TxnId = number export const txnCounter = new AtomicNumber(0) export function makeTxnId(): TxnId { return txnCounter.incrementAndGet() }