wallet-core: simplify/optimize async condition

This commit is contained in:
Florian Dold 2023-08-22 08:54:28 +02:00
parent f9d1c4a89e
commit 8c670bd06d
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B

View File

@ -23,6 +23,8 @@ export interface OpenedPromise<T> {
/**
* Get an unresolved promise together with its extracted resolve / reject
* function.
*
* Recent ECMAScript proposals also call this a promise capability.
*/
export function openPromise<T>(): OpenedPromise<T> {
let resolve: ((x?: any) => void) | null = null;
@ -39,22 +41,20 @@ export function openPromise<T>(): OpenedPromise<T> {
}
export class AsyncCondition {
private _waitPromise: Promise<void>;
private _resolveWaitPromise: (val: void) => void;
constructor() {
const op = openPromise<void>();
this._waitPromise = op.promise;
this._resolveWaitPromise = op.resolve;
}
private promCap?: OpenedPromise<void> = undefined;
constructor() {}
wait(): Promise<void> {
return this._waitPromise;
if (!this.promCap) {
this.promCap = openPromise<void>();
}
return this.promCap.promise;
}
trigger(): void {
this._resolveWaitPromise();
const op = openPromise<void>();
this._waitPromise = op.promise;
this._resolveWaitPromise = op.resolve;
if (this.promCap) {
this.promCap.resolve();
}
this.promCap = undefined;
}
}