This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new 2af413743f9 (chores) doc: minor adjustments to the route explanation in the CamelContext doc 2af413743f9 is described below commit 2af413743f9186334c76e231ca3213df65064506 Author: Otavio Rodolfo Piske <angusyo...@gmail.com> AuthorDate: Thu Feb 16 14:50:06 2023 +0100 (chores) doc: minor adjustments to the route explanation in the CamelContext doc --- docs/user-manual/modules/ROOT/pages/camelcontext.adoc | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/docs/user-manual/modules/ROOT/pages/camelcontext.adoc b/docs/user-manual/modules/ROOT/pages/camelcontext.adoc index c9974bae27a..f0d6864b5c0 100644 --- a/docs/user-manual/modules/ROOT/pages/camelcontext.adoc +++ b/docs/user-manual/modules/ROOT/pages/camelcontext.adoc @@ -103,13 +103,10 @@ your own custom code. The figure below shows the flow between processors. image::images/message_flow_in_route.png[image] -A route first starts with a consumer (i.e. `from` in the DSL) that populates the initial -xref:exchange.adoc[exchange]. At each processor step, the out message from the previous step is the in -message of the next. In many cases, processors don’t set an out message, so in this case -the in message is reused. At the end of a route, the xref:exchange-pattern.adoc[MEP] of the exchange determines -whether a reply needs to be sent back to the caller of the route. If the xref:exchange-pattern.adoc[MEP] is InOnly, -no reply will be sent back. If it’s InOut, Camel will take the out message from the last -step and return it. +A route starts with a consumer (i.e., `from` in the DSL) that populates the initial xref:exchange.adoc[exchange]. At each processor step, the output (out) message +from the previous step is the input (in) message of the next. In many cases, processors don’t set an out message, so in this case the in message +is reused. The xref:exchange-pattern.adoc[exchange pattern] of the exchange determines, at the end of a route, whether a reply needs to be sent back to the caller of the route. +If the exchange pattern (MEP) is InOnly, no reply will be sent back. If it’s InOut, Camel will take the out message from the last step and return it. === Component