Rework the README transformer example into a single streaming pipeline - #70
Rework the README transformer example into a single streaming pipeline#70morisil wants to merge 1 commit into
Conversation
Inline the rule-set extensions into one parse().transform{}.asHtml()
chain collected incrementally, showing the streaming consumption path
instead of the composed-extensions + render() variant.
ReviewReviewed the README rework of the "Transforming the event stream" example. One functional concern and a couple of consistency nits — no build/test surface is touched, so nothing here blocks merging on its own, but they undermine the example's stated goal (showing what the streaming path actually looks like) and its self-documenting-test contract. Likely bug: the "Will print" block doesn't match what
|
Summary
Replaces the "Transforming the event stream" README example — previously two named
TransformerBuilderextensions composed viatransform { … }and printed withrender()— with a single inlineparse().transform { … }.asHtml().collect { … }pipeline, showing the incremental streaming consumption path directly.Documentation-only change.
🤖 Generated with Claude Code