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 d8854ca CAMEL-16861: Cleanup and update EIP docs d8854ca is described below commit d8854cad93addb8c08cbd6fe4476e940ca47805f Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Sat Sep 18 18:25:49 2021 +0200 CAMEL-16861: Cleanup and update EIP docs --- .../docs/modules/eips/pages/guaranteed-delivery.adoc | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/core/camel-core-engine/src/main/docs/modules/eips/pages/guaranteed-delivery.adoc b/core/camel-core-engine/src/main/docs/modules/eips/pages/guaranteed-delivery.adoc index 74d0776..40be507 100644 --- a/core/camel-core-engine/src/main/docs/modules/eips/pages/guaranteed-delivery.adoc +++ b/core/camel-core-engine/src/main/docs/modules/eips/pages/guaranteed-delivery.adoc @@ -8,22 +8,23 @@ patterns] using among others the following components: * xref:components::file-component.adoc[File] for using file systems as a persistent store of messages -* xref:components::jms-component.adoc[JMS] when using persistent delivery (the default) for -working with JMS Queues and Topics for high performance, clustering and -load balancing +* xref:components::activemq-component.adoc[ActiveMQ] or xref:components::jms-component.adoc[JMS] when using persistent delivery (the default) for +working with JMS queues and topics for high performance, clustering and load balancing +* xref:components::kafka-component.adoc[Kafka] when using persistent delivery for +working with streaming events for high performance, clustering and load balancing * xref:components::jpa-component.adoc[JPA] for using a database as a persistence layer, or use -any of the many other database component such as xref:components::sql-component.adoc[SQL], -xref:components::jdbc-component.adoc[JDBC], -xref:components::mybatis-component.adoc[MyBatis] +any of the other database component such as xref:components::sql-component.adoc[SQL], +xref:components::jdbc-component.adoc[JDBC], or xref:components::mybatis-component.adoc[MyBatis] image::eip/GuaranteedMessagingSolution.gif[image] -[[GuaranteedDelivery-Example]] == Example The following example demonstrates illustrates the use of http://www.enterpriseintegrationpatterns.com/GuaranteedMessaging.html[Guaranteed -Delivery] within the xref:components::jms-component.adoc[JMS] component. By default, a message +Delivery] within the xref:components::jms-component.adoc[JMS] component. + +By default, a message is not considered successfully delivered until the recipient has persisted the message locally guaranteeing its receipt in the event the destination becomes unavailable.