-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add concurrent loading of multiple resources #30
Comments
What's this do? Should it be a plugin? |
Let’s you load 100 pages by firing off 10 requests at a time… stitches the responses back together after. Mat On Feb 28, 2014, at 4:01 PM, Ryan [email protected] wrote:
|
That's pretty cool. Maybe you could do something like stretchr.at("path/here").all({
each: function(response) {
//things that happen for each response
},
success: function(response) {
//things that happen when done and merged together
}
}) |
I suppose the question would be: Does the output of each impact the merged results at all, or does it just let you get a jumpstart on results as they're coming in. |
Love that. Could even be:
Would make building progress bars very easy. On Mar 9, 2014, at 1:07 PM, Ryan [email protected] wrote:
|
No description provided.
The text was updated successfully, but these errors were encountered: