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>
50 lines
No EOL
1.3 KiB
Text
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 |