Created
July 13, 2016 10:28
-
-
Save arikfr/8be1aa64203aca7ca4f3bb9c2fb9e8d0 to your computer and use it in GitHub Desktop.
Promises Caching
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
var inProgressUrls = {}; | |
function grabScreenshot(url) { | |
var inProgress = inProgressUrls[url]; | |
if (inProgress) { | |
return inProgress; | |
} | |
var promise = new Promise(function(fulfill, reject) { | |
... grab screenshot ... | |
// Once done, remove the Promise from the map. | |
delete inProgressUrls[url]; | |
}); | |
inProgressUrls[url] = promise; | |
return promise; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment