Last active
December 8, 2018 10:31
-
-
Save slikts/9d3234d81e8db86db7e6794c7d1b52f9 to your computer and use it in GitHub Desktop.
Deferred
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
}; | |
}); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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