Repository: camel Updated Branches: refs/heads/master a892578d4 -> 5104c1669
Ad documentation for camel-chronicle (engine) Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/5104c166 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/5104c166 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/5104c166 Branch: refs/heads/master Commit: 5104c166945d0250114474fd6e55c5cbe26222c5 Parents: a892578 Author: lburgazzoli <[email protected]> Authored: Fri Sep 16 14:38:15 2016 +0200 Committer: lburgazzoli <[email protected]> Committed: Fri Sep 16 14:38:35 2016 +0200 ---------------------------------------------------------------------- .../engine/ChronicleEngineConfiguration.java | 29 ++++++++++++++------ 1 file changed, 20 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/5104c166/components/camel-chronicle/src/main/java/org/apache/camel/component/chronicle/engine/ChronicleEngineConfiguration.java ---------------------------------------------------------------------- diff --git a/components/camel-chronicle/src/main/java/org/apache/camel/component/chronicle/engine/ChronicleEngineConfiguration.java b/components/camel-chronicle/src/main/java/org/apache/camel/component/chronicle/engine/ChronicleEngineConfiguration.java index cde2b67..8d24a17 100644 --- a/components/camel-chronicle/src/main/java/org/apache/camel/component/chronicle/engine/ChronicleEngineConfiguration.java +++ b/components/camel-chronicle/src/main/java/org/apache/camel/component/chronicle/engine/ChronicleEngineConfiguration.java @@ -106,14 +106,14 @@ public class ChronicleEngineConfiguration implements CamelContextAware { } /** - * Description + * The Wire type to use, default to binary wire. */ public void setWireType(String wireType) { setWireType(WireType.valueOf(wireType)); } /** - * Description + * The Wire type to use, default to binary wire. */ public void setWireType(WireType wireType) { this.wireType = wireType; @@ -128,7 +128,7 @@ public class ChronicleEngineConfiguration implements CamelContextAware { } /** - * Description + * Set if consumer should subscribe to Map events, default true. */ public void setSubscribeMapEvents(boolean subscribeMapEvents) { this.subscribeMapEvents = subscribeMapEvents; @@ -139,14 +139,14 @@ public class ChronicleEngineConfiguration implements CamelContextAware { } /** - * Description + * A comma separated list of Map event type to filer, valid values are: INSERT, UPDATE, REMOVE. */ public void setFilteredMapEvents(String filteredMapEvents) { setFilteredMapEvents(filteredMapEvents.split(",")); } /** - * Description + * The list of Map event type to filer, valid values are: INSERT, UPDATE, REMOVE. */ public void setFilteredMapEvents(String[] filteredMapEvents) { this.filteredMapEvents = filteredMapEvents; @@ -161,7 +161,7 @@ public class ChronicleEngineConfiguration implements CamelContextAware { } /** - * Description + * Set if consumer should subscribe to TopologicalEvents,d efault false. */ public void setSubscribeTopologicalEvents(boolean subscribeTopologicalEvents) { this.subscribeTopologicalEvents = subscribeTopologicalEvents; @@ -176,7 +176,7 @@ public class ChronicleEngineConfiguration implements CamelContextAware { } /** - * Description + * Set if consumer should subscribe to TopicEvents,d efault false. */ public void setSubscribeTopicEvents(boolean subscribeTopicEvents) { this.subscribeTopicEvents = subscribeTopicEvents; @@ -191,7 +191,18 @@ public class ChronicleEngineConfiguration implements CamelContextAware { } /** - * Description + * The default action to perform, valid values are: + * - PUBLISH + * - PPUBLISH_AND_INDEX + * - PPUT + * - PGET_AND_PUT + * - PPUT_ALL + * - PPUT_IF_ABSENT + * - PGET + * - PGET_AND_REMOVE + * - PREMOVE + * - PIS_EMPTY + * - PSIZE */ public void setAction(String action) { this.action = action; @@ -202,7 +213,7 @@ public class ChronicleEngineConfiguration implements CamelContextAware { } /** - * Description + * Enable/disable data persistence */ public void setPersistent(boolean persistent) { this.persistent = persistent;
