You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/02/15 09:46:13 UTC

[camel] 04/04: CAMEL-14565: Add docs for missing option

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 4658e561dd72760c9035de836650a787d84ba798
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sat Feb 15 10:45:42 2020 +0100

    CAMEL-14565: Add docs for missing option
---
 .../reactive/streams/engine/ReactiveStreamsEngineConfiguration.java  | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/components/camel-reactive-streams/src/main/java/org/apache/camel/component/reactive/streams/engine/ReactiveStreamsEngineConfiguration.java b/components/camel-reactive-streams/src/main/java/org/apache/camel/component/reactive/streams/engine/ReactiveStreamsEngineConfiguration.java
index fe62f66..0418f10 100644
--- a/components/camel-reactive-streams/src/main/java/org/apache/camel/component/reactive/streams/engine/ReactiveStreamsEngineConfiguration.java
+++ b/components/camel-reactive-streams/src/main/java/org/apache/camel/component/reactive/streams/engine/ReactiveStreamsEngineConfiguration.java
@@ -16,13 +16,18 @@
  */
 package org.apache.camel.component.reactive.streams.engine;
 
+import org.apache.camel.spi.Metadata;
+
 /**
  * Configuration parameters for the Camel internal reactive-streams engine.
  */
 public class ReactiveStreamsEngineConfiguration implements Cloneable {
 
+    @Metadata(defaultValue = "CamelReactiveStreamsWorker", description = "The name of the thread pool used by the reactive streams internal engine.")
     private String threadPoolName = "CamelReactiveStreamsWorker";
+    @Metadata(description = "The minimum number of threads used by the reactive streams internal engine.")
     private int threadPoolMinSize;
+    @Metadata(defaultValue = "10", description = "The maximum number of threads used by the reactive streams internal engine.")
     private int threadPoolMaxSize = 10;
 
     public ReactiveStreamsEngineConfiguration() {