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 17022bce7231 Update message-channel.adoc (#21311)
17022bce7231 is described below
commit 17022bce72318c4f009ff64c031492c4bc5f836e
Author: Raymond Meester <[email protected]>
AuthorDate: Sun Feb 8 14:35:46 2026 +0100
Update message-channel.adoc (#21311)
Add YAML Example
---
.../main/docs/modules/eips/pages/message-channel.adoc | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git
a/core/camel-core-engine/src/main/docs/modules/eips/pages/message-channel.adoc
b/core/camel-core-engine/src/main/docs/modules/eips/pages/message-channel.adoc
index bb7e3cd2b3a4..6d3f65860533 100644
---
a/core/camel-core-engine/src/main/docs/modules/eips/pages/message-channel.adoc
+++
b/core/camel-core-engine/src/main/docs/modules/eips/pages/message-channel.adoc
@@ -43,4 +43,21 @@ XML::
<to uri="jms:queue:foo"/>
</route>
----
+
+YAML::
++
+[source,yaml]
+----
+- route:
+ from:
+ uri: file
+ parameters:
+ directoryName: foo
+ steps:
+ - to:
+ uri: jms
+ parameters:
+ destinationType: queue
+ destinationName: foo
+----
====