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 97488e8e049f Update message-endpoint.adoc (#21314)
97488e8e049f is described below
commit 97488e8e049f5d64e15e6dfa8cf8d336e5ad9762
Author: Raymond Meester <[email protected]>
AuthorDate: Sun Feb 8 14:36:14 2026 +0100
Update message-endpoint.adoc (#21314)
Add YAML example
---
.../main/docs/modules/eips/pages/message-endpoint.adoc | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git
a/core/camel-core-engine/src/main/docs/modules/eips/pages/message-endpoint.adoc
b/core/camel-core-engine/src/main/docs/modules/eips/pages/message-endpoint.adoc
index fbc92af86a4f..6614e38afe92 100644
---
a/core/camel-core-engine/src/main/docs/modules/eips/pages/message-endpoint.adoc
+++
b/core/camel-core-engine/src/main/docs/modules/eips/pages/message-endpoint.adoc
@@ -47,4 +47,21 @@ XML::
<to uri="jms:queue:foo"/>
</route>
----
+
+YAML::
++
+[source,yaml]
+----
+- route:
+ from:
+ uri: file
+ parameters:
+ directoryName: messages/foo
+ steps:
+ - to:
+ uri: jms
+ parameters:
+ destinationType: queue
+ destinationName: foo
+----
====