Server and client side async execution pipeline assemblers#616
Merged
ok2c merged 1 commit intoapache:masterfrom Feb 13, 2026
Merged
Server and client side async execution pipeline assemblers#616ok2c merged 1 commit intoapache:masterfrom
ok2c merged 1 commit intoapache:masterfrom
Conversation
e182b6f to
06a75b3
Compare
Member
There was a problem hiding this comment.
@ok2c I think there is a typo on the package. examles
06a75b3 to
5273988
Compare
arturobernalg
approved these changes
Feb 11, 2026
…PI usage examples
Member
Author
@arturobernalg Corrected. Thank you! |
5273988 to
e70298f
Compare
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.
I have added four convenience classes:
AsyncClientPipeline,AsyncServerPipeline,AsyncJsonClientPipeline, andAsyncJsonServerPipelinethat help put together message processing pipelines using a very simple, fluent DSL.The pipeline assembly DSL makes quite a big difference for JSON processing especially.
I am open to ideas of better naming or other improvements. If I hear no objections I will commit the changes in a couple of days. There is still plenty of time to polish or even revert.
I am aware of some code duplication. The choice was between a very ugly coupling between classes with lots unnecessary details spilling into the public API and loose coupling with some code duplication. I opted for the latter.