wallet-core: simplify/optimize async condition
This commit is contained in:
parent
f9d1c4a89e
commit
8c670bd06d
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user