Rocky_Mountain_Vending/.pnpm-store/v10/files/1f/74cce846d9134c7012694b746515c05b86ac9c85710cacecc0493a06f7227a689fc745bd95c926a8bc23b5970b491908a15dc258481f5b24189c56c2c8fbb1
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

50 lines
No EOL
1.3 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Mutex = void 0;
/**
* @license
* Copyright 2024 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
const Deferred_js_1 = require("./Deferred.js");
const disposable_js_1 = require("./disposable.js");
/**
* @internal
*/
class Mutex {
static Guard = class Guard {
#mutex;
#onRelease;
constructor(mutex, onRelease) {
this.#mutex = mutex;
this.#onRelease = onRelease;
}
[disposable_js_1.disposeSymbol]() {
this.#onRelease?.();
return this.#mutex.release();
}
};
#locked = false;
#acquirers = [];
// This is FIFO.
async acquire(onRelease) {
if (!this.#locked) {
this.#locked = true;
return new Mutex.Guard(this);
}
const deferred = Deferred_js_1.Deferred.create();
this.#acquirers.push(deferred.resolve.bind(deferred));
await deferred.valueOrThrow();
return new Mutex.Guard(this, onRelease);
}
release() {
const resolve = this.#acquirers.shift();
if (!resolve) {
this.#locked = false;
return;
}
resolve();
}
}
exports.Mutex = Mutex;
//# sourceMappingURL=Mutex.js.map