CAMEL-10612: better doc (spring-boot)
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/44766f56 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/44766f56 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/44766f56 Branch: refs/heads/master Commit: 44766f565bfc18bc07e89e5584b76d6711aebcab Parents: 8307841 Author: Nicola Ferraro <ni.ferr...@gmail.com> Authored: Mon Feb 6 01:18:30 2017 +0100 Committer: Nicola Ferraro <ni.ferr...@gmail.com> Committed: Mon Feb 6 10:49:28 2017 +0100 ---------------------------------------------------------------------- .../src/main/docs/reactive-streams-component.adoc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/44766f56/components/camel-reactive-streams/src/main/docs/reactive-streams-component.adoc ---------------------------------------------------------------------- diff --git a/components/camel-reactive-streams/src/main/docs/reactive-streams-component.adoc b/components/camel-reactive-streams/src/main/docs/reactive-streams-component.adoc index f720992..b351017 100644 --- a/components/camel-reactive-streams/src/main/docs/reactive-streams-component.adoc +++ b/components/camel-reactive-streams/src/main/docs/reactive-streams-component.adoc @@ -375,6 +375,24 @@ The number of concurrent consumers (threads) can also be set as endpoint option When using 1 consumer (the default), the order of items in the source stream is maintained. When this value is increased, items will be processed concurrently by multiple threads (so not preserving the order). + +### Camel Reactive Streams Starter + +A starter module is available to spring-boot users. When using the starter, +the `CamelReactiveStreamsService` can be directly injected into Spring components. + +To use the starter, add the following to your spring boot pom.xml file: + +[source,xml] +------------------------------------------------------ +<dependency> + <groupId>org.apache.camel</groupId> + <artifactId>camel-reactive-streams-starter</artifactId> + <version>${camel.version}</version> <!-- use the same version as your Camel core version --> +</dependency> +------------------------------------------------------ + + ### See Also * link:configuring-camel.html[Configuring Camel]