gradido/federation/src/graphql/util/TRANSACTIONS_LOCK.ts
2023-08-29 00:49:51 +02:00

5 lines
151 B
TypeScript

import { Semaphore } from 'await-semaphore'
const CONCURRENT_TRANSACTIONS = 1
export const TRANSACTIONS_LOCK = new Semaphore(CONCURRENT_TRANSACTIONS)