Skip to content

Instantly share code, notes, and snippets.

@slikts
Last active December 8, 2018 10:31
Show Gist options
  • Save slikts/9d3234d81e8db86db7e6794c7d1b52f9 to your computer and use it in GitHub Desktop.
Save slikts/9d3234d81e8db86db7e6794c7d1b52f9 to your computer and use it in GitHub Desktop.
Deferred
class Deferred {
constructor() {
this.promise = new Promise((resolve, reject) => {
this.resolve = value => {
resolve(value);
return this.promise;
};
this.reject = reason => {
reject(reason);
return this.promise;
};
});
}
}
/**
* Exposes the promise executor callbacks (resolve, reject).
*/
export default class Deferred<A> {
promise: Promise<A>;
constructor() {
this.promise = new Promise((resolve, reject) => {
this.resolve = value => {
resolve(value);
return this.promise;
};
this.reject = reason => {
reject(reason);
return this.promise;
};
});
}
}
export default interface Deferred<A> {
resolve(value?: A | PromiseLike<A>): Promise<A>;
reject(reason?: string | Error): Promise<A>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment