Feature | Add BatchRequest for handling batched API requests#466
Open
mstfblci wants to merge 6 commits intosaloonphp:v3from
Open
Feature | Add BatchRequest for handling batched API requests#466mstfblci wants to merge 6 commits intosaloonphp:v3from
mstfblci wants to merge 6 commits intosaloonphp:v3from
Conversation
Contributor
Author
|
I'd appreciate your review and feedback. @Sammyjo20 |
Member
|
Hey @mstfblci apologies, I've been a bit busy with things - I will take a look for you soon :) |
Contributor
Author
|
Hey @Sammyjo20, no worries. Just wanted to follow up—whenever you get a chance, could you also take a look at my latest PR? Thanks!” |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
I am working with hotel providers, where one provider can return prices for multiple rooms in a single request, while another provider requires separate requests for each room. This approach became necessary to handle such cases efficiently.
Additionally, for some of the providers I work with, there are situations where I need to send requests to multiple endpoints and process the results accordingly, making this solution quite useful.
Below is an example of how I handle batch requests in such cases
Example