Rocky_Mountain_Vending/.pnpm-store/v10/files/05/a7b03b70c09ccb7e22f440db2a73255db69156b8816a223e78f1404baf624567e23a659f7e0d75e42dc0cb61f2400cc556082c7719041ff79d8e95b0475214
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

44 lines
No EOL
1.2 KiB
Text

/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import { TaskManager, WaitTask } from '../common/WaitTask.js';
import { disposeSymbol } from '../util/disposable.js';
/**
* @internal
*/
export class Realm {
timeoutSettings;
taskManager = new TaskManager();
constructor(timeoutSettings) {
this.timeoutSettings = timeoutSettings;
}
async waitForFunction(pageFunction, options = {}, ...args) {
const { polling = 'raf', timeout = this.timeoutSettings.timeout(), root, signal, } = options;
if (typeof polling === 'number' && polling < 0) {
throw new Error('Cannot poll with non-positive interval');
}
const waitTask = new WaitTask(this, {
polling,
root,
timeout,
signal,
}, pageFunction, ...args);
return await waitTask.result;
}
get disposed() {
return this.#disposed;
}
#disposed = false;
/** @internal */
dispose() {
this.#disposed = true;
this.taskManager.terminateAll(new Error('waitForFunction failed: frame got detached.'));
}
/** @internal */
[disposeSymbol]() {
this.dispose();
}
}
//# sourceMappingURL=Realm.js.map