Skip to content

Instantly share code, notes, and snippets.

@mforando
Last active March 9, 2020 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mforando/dec3171d55ded0bb6677c2d41678404e to your computer and use it in GitHub Desktop.
Save mforando/dec3171d55ded0bb6677c2d41678404e to your computer and use it in GitHub Desktop.
d3 queue test
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
</style>
</head>
<body>
<script>
var q = d3.queue()
.defer(prepDataA)
.defer(prepData, "B")
.defer(prepData, "C")
.await(function(error, A, B, C) {
if (error) throw error;
console.log(A, B, C);
});
function prepDataA(callback){
var data = d3.range(1000);
setTimeout(()=>{
callback(null, data);
}, 2000);
}
function prepData(Letter, callback){
var data = d3.range(100);
setTimeout(()=>{
callback(null, data);
}, 2500);
}
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment