Created
January 23, 2017 02:45
-
-
Save ericelliott/ac7a019137adc70512fc16e6da55bde9 to your computer and use it in GitHub Desktop.
Speculation: Cancellable promise implementation. Maintained production version here: https://github.com/ericelliott/speculation
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
// HOF Wraps the native Promise API | |
// to add take a shouldCancel promise and add | |
// an onCancel() callback. | |
const speculation = ( | |
fn, | |
cancel = Promise.reject() // Don't cancel by default | |
) => new Promise((resolve, reject) => { | |
const noop = () => {}; | |
const onCancel = ( | |
handleCancel | |
) => cancel.then( | |
handleCancel, | |
// Ignore expected cancel rejections: | |
noop | |
) | |
// handle onCancel errors | |
.catch(e => reject(e)) | |
; | |
fn(resolve, reject, onCancel); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment