This is an automated email from the ASF dual-hosted git repository.
davsclaus 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 ae0aea12132 (chores) documentation: minor cleanups on the Exchange
guide (#9228)
ae0aea12132 is described below
commit ae0aea12132293d5f71fe8611b04decb462ab60b
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Sat Jan 28 07:50:58 2023 +0100
(chores) documentation: minor cleanups on the Exchange guide (#9228)
---
docs/user-manual/modules/ROOT/pages/exchange.adoc | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
diff --git a/docs/user-manual/modules/ROOT/pages/exchange.adoc
b/docs/user-manual/modules/ROOT/pages/exchange.adoc
index e354918d6e7..02aed3d9b77 100644
--- a/docs/user-manual/modules/ROOT/pages/exchange.adoc
+++ b/docs/user-manual/modules/ROOT/pages/exchange.adoc
@@ -1,14 +1,12 @@
= Message Exchange
-To support various message exchange patterns
-like one way xref:components:eips:event-message.adoc[Event Message] and
-xref:components:eips:requestReply-eip.adoc[Request Reply] messages Camel
-uses an `Exchange` interface which has an xref:exchange-pattern.adoc[Exchange
Pattern]
-property which can be set to *InOnly* for an
-xref:components:eips:event-message.adoc[Event Message] which has a single
inbound Message,
-or *InOut* for a xref:components:eips:requestReply-eip.adoc[Request Reply]
-where there is an inbound and outbound Message.
+A request message and its corresponding reply or exception message is
represented in Camel using the `Exchange` interface.
+This interface provides an abstraction for this pattern of communication
between systems.
+The presence of a reply message is optional and depends on the
xref:exchange-pattern.adoc[exchange pattern] used in the integration.
+Thanks to this, Apache Camel can support different integration patterns such
as:
+* xref:components:eips:event-message.adoc[Event Messages]: messages that have
only an inbound message
+* xref:components:eips:requestReply-eip.adoc[Request and Reply]: messages that
have an inbound and an outbound message.
== Implementation Details