You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2018/03/06 12:58:12 UTC

[camel] branch master updated (fad1a94 -> 9d568f9)

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

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


    from fad1a94  Polished docs
     new 8e6d1a0  Added Remove Properties EIP docs
     new 40959b2  Fixed remove Property EIP docs
     new f44395e  Added description to Batch Config EIP
     new 685249f  Added description to ConvertBodyTo EIP
     new 2a96a0b  Better docs for Custom Load Balancer
     new 02c3af9  Minor docs fix on Multicast
     new 00f763c  Minor fix on Pipeline EIP docs
     new 0b2faba  Minor fix on setBody EIP docs
     new 9d568f9  Added description to stream-config EIP docs

The 9 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/main/docs/eips/batch-config-eip.adoc       |  1 +
 .../src/main/docs/eips/convertBodyTo-eip.adoc      |  1 +
 .../src/main/docs/eips/customLoadBalancer-eip.adoc |  2 +-
 camel-core/src/main/docs/eips/multicast-eip.adoc   |  2 +-
 camel-core/src/main/docs/eips/pipeline-eip.adoc    |  4 +-
 .../src/main/docs/eips/removeProperties-eip.adoc   | 46 ++++++++++++++++++++++
 .../src/main/docs/eips/removeProperty-eip.adoc     |  5 ++-
 camel-core/src/main/docs/eips/setBody-eip.adoc     |  3 +-
 .../src/main/docs/eips/stream-config-eip.adoc      |  1 +
 9 files changed, 58 insertions(+), 7 deletions(-)
 create mode 100644 camel-core/src/main/docs/eips/removeProperties-eip.adoc

-- 
To stop receiving notification emails like this one, please contact
acosentino@apache.org.

[camel] 05/09: Better docs for Custom Load Balancer

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 2a96a0b5e41cf3ae89f7e6b2f66a23f266fb9028
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 6 13:49:40 2018 +0100

    Better docs for Custom Load Balancer
---
 camel-core/src/main/docs/eips/customLoadBalancer-eip.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/camel-core/src/main/docs/eips/customLoadBalancer-eip.adoc b/camel-core/src/main/docs/eips/customLoadBalancer-eip.adoc
index 5d24aca..cf935cb 100644
--- a/camel-core/src/main/docs/eips/customLoadBalancer-eip.adoc
+++ b/camel-core/src/main/docs/eips/customLoadBalancer-eip.adoc
@@ -1,7 +1,7 @@
 [[customLoadBalancer-eip]]
 == Custom Load Balancer EIP
 
-You can use a custom load balancer (eg your own implementation) also.
+This EIP allows you to use your own Load Balancer implementation
 
 // eip options: START
 The Custom Load Balancer EIP supports 1 options which are listed below:

-- 
To stop receiving notification emails like this one, please contact
acosentino@apache.org.

[camel] 03/09: Added description to Batch Config EIP

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit f44395e4c775f74ec8787e584e830f2d80322612
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 6 13:47:37 2018 +0100

    Added description to Batch Config EIP
---
 camel-core/src/main/docs/eips/batch-config-eip.adoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/camel-core/src/main/docs/eips/batch-config-eip.adoc b/camel-core/src/main/docs/eips/batch-config-eip.adoc
index 9d01774..687e4b0 100644
--- a/camel-core/src/main/docs/eips/batch-config-eip.adoc
+++ b/camel-core/src/main/docs/eips/batch-config-eip.adoc
@@ -1,6 +1,7 @@
 [[batch-config-eip]]
 == Batch-config EIP
 
+Batch-processing resequence EIP
 
 // eip options: START
 The Batch-config EIP supports 5 options which are listed below:

-- 
To stop receiving notification emails like this one, please contact
acosentino@apache.org.

[camel] 08/09: Minor fix on setBody EIP docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 0b2fabaadbd26d7f1b16e60db59ddc1ee065916b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 6 13:54:52 2018 +0100

    Minor fix on setBody EIP docs
---
 camel-core/src/main/docs/eips/setBody-eip.adoc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/camel-core/src/main/docs/eips/setBody-eip.adoc b/camel-core/src/main/docs/eips/setBody-eip.adoc
index 1141371..36d6599 100644
--- a/camel-core/src/main/docs/eips/setBody-eip.adoc
+++ b/camel-core/src/main/docs/eips/setBody-eip.adoc
@@ -33,6 +33,7 @@ And the same example using XML:
     <route>
         <from uri="direct:a"/>
         <setBody><constant>test</constant></setBody>
+        <to uri="direct:b"/>
     </route>
 </camelContext>
-----
\ No newline at end of file
+----

-- 
To stop receiving notification emails like this one, please contact
acosentino@apache.org.

[camel] 01/09: Added Remove Properties EIP docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 8e6d1a0671a39b743312f5e413ca9e13f7aaf638
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 6 13:43:51 2018 +0100

    Added Remove Properties EIP docs
---
 .../src/main/docs/eips/removeProperties-eip.adoc   | 46 ++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/camel-core/src/main/docs/eips/removeProperties-eip.adoc b/camel-core/src/main/docs/eips/removeProperties-eip.adoc
new file mode 100644
index 0000000..1aec420
--- /dev/null
+++ b/camel-core/src/main/docs/eips/removeProperties-eip.adoc
@@ -0,0 +1,46 @@
+[[removeProperties-eip]]
+== Remove Properties EIP
+
+The RemoveProperties EIP allows you to remove Properties from you exchange.
+
+=== Options
+
+// eip options: START
+The Remove Properties EIP supports 2 options which are listed below:
+
+[width="100%",cols="2,5,^1,2",options="header"]
+|===
+| Name | Description | Default | Type
+| *pattern* | *Required* Name or pattern of properties to remove |  | String
+| *excludePattern* | Name or pattern of properties to not remove |  | String
+|===
+// eip options: END
+
+=== Examples
+
+The following example shows how to use the removeProperties EIP
+
+[source,java]
+----
+RouteBuilder builder = new RouteBuilder() {
+    public void configure() {
+        from("direct:a")
+            .removeProperties("myProperty", "myProperty1")
+            .to("direct:b");
+    }
+};
+----
+
+
+And the same example using XML:
+
+[source,xml]
+----
+<camelContext xmlns="http://camel.apache.org/schema/spring">
+    <route>
+        <from uri="direct:a"/>
+           <removeProperties pattern="myProperty*"/>
+        <to uri="direct:b"/>
+    </route>
+</camelContext>
+----

-- 
To stop receiving notification emails like this one, please contact
acosentino@apache.org.

[camel] 07/09: Minor fix on Pipeline EIP docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 00f763cfbfd20a24e568972f7b94c05dcc2c7ba8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 6 13:52:14 2018 +0100

    Minor fix on Pipeline EIP docs
---
 camel-core/src/main/docs/eips/pipeline-eip.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/camel-core/src/main/docs/eips/pipeline-eip.adoc b/camel-core/src/main/docs/eips/pipeline-eip.adoc
index 4f9e01c..3f9c4f7 100644
--- a/camel-core/src/main/docs/eips/pipeline-eip.adoc
+++ b/camel-core/src/main/docs/eips/pipeline-eip.adoc
@@ -35,7 +35,7 @@ from("activemq:SomeQueue")
     .pipeline()
     .bean("foo")
     .bean("bar")
-    .to("acitvemq:OutputQueueu");
+    .to("acitvemq:OutputQueue");
 ----
 
 The pipeline is the default mode, which can be omitted, and therefore you almost often write as:
@@ -45,7 +45,7 @@ The pipeline is the default mode, which can be omitted, and therefore you almost
 from("activemq:SomeQueue")
     .bean("foo")
     .bean("bar")
-    .to("acitvemq:OutputQueueu");
+    .to("acitvemq:OutputQueue");
 ----
 
 In XML you can use the `<pipeline>` element

-- 
To stop receiving notification emails like this one, please contact
acosentino@apache.org.

[camel] 02/09: Fixed remove Property EIP docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 40959b2c1f5a8b62546deafa97a09f797cbe3268
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 6 13:44:50 2018 +0100

    Fixed remove Property EIP docs
---
 camel-core/src/main/docs/eips/removeProperty-eip.adoc | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/camel-core/src/main/docs/eips/removeProperty-eip.adoc b/camel-core/src/main/docs/eips/removeProperty-eip.adoc
index a3f1a06..19ddb2c 100644
--- a/camel-core/src/main/docs/eips/removeProperty-eip.adoc
+++ b/camel-core/src/main/docs/eips/removeProperty-eip.adoc
@@ -1,7 +1,7 @@
 [[removeProperty-eip]]
 == Remove Property EIP
 
-The RemoveProperty EIP allows you to set the body of your exchange.
+The RemoveProperty EIP allows you to remove a Property from your exchange.
 
 === Options
 
@@ -17,7 +17,7 @@ The Remove Property EIP supports 1 options which are listed below:
 
 === Examples
 
-The following example shows how to use the SetProperty EIP
+The following example shows how to use the Remove Property EIP
 
 [source,java]
 ----
@@ -39,6 +39,7 @@ And the same example using XML:
     <route>
         <from uri="direct:a"/>
            <removeProperty propertyName="myProperty"/>
+        <to uri="direct:b"/>
     </route>
 </camelContext>
 ----

-- 
To stop receiving notification emails like this one, please contact
acosentino@apache.org.

[camel] 06/09: Minor docs fix on Multicast

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 02c3af918fe393e0a2df2826b4a50c74172c79ed
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 6 13:51:23 2018 +0100

    Minor docs fix on Multicast
---
 camel-core/src/main/docs/eips/multicast-eip.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/camel-core/src/main/docs/eips/multicast-eip.adoc b/camel-core/src/main/docs/eips/multicast-eip.adoc
index 7d28214..0429a9f 100644
--- a/camel-core/src/main/docs/eips/multicast-eip.adoc
+++ b/camel-core/src/main/docs/eips/multicast-eip.adoc
@@ -1,7 +1,7 @@
 [[multicast-eip]]
 == Multicast EIP
 
-The Multicast allows to route the same message to a number of endpoints
+The Multicast EIP allows to route the same message to a number of endpoints
 and process them in a different way. The main difference between the
 Multicast and Splitter is that Splitter will split the message into
 several pieces but the Multicast will not modify the request message.

-- 
To stop receiving notification emails like this one, please contact
acosentino@apache.org.

[camel] 04/09: Added description to ConvertBodyTo EIP

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 685249f7398d298b9344c8eb426f9cc288914cd4
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 6 13:48:45 2018 +0100

    Added description to ConvertBodyTo EIP
---
 camel-core/src/main/docs/eips/convertBodyTo-eip.adoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/camel-core/src/main/docs/eips/convertBodyTo-eip.adoc b/camel-core/src/main/docs/eips/convertBodyTo-eip.adoc
index ac37292..ba0a673 100644
--- a/camel-core/src/main/docs/eips/convertBodyTo-eip.adoc
+++ b/camel-core/src/main/docs/eips/convertBodyTo-eip.adoc
@@ -1,6 +1,7 @@
 [[convertBodyTo-eip]]
 == Convert Body To EIP
 
+The ConvertBodyTo EIP allows you to transform your body to a different type.
 
 // eip options: START
 The Convert Body To EIP supports 2 options which are listed below:

-- 
To stop receiving notification emails like this one, please contact
acosentino@apache.org.

[camel] 09/09: Added description to stream-config EIP docs

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 9d568f9e3bd1a46d68739dd6cf86babd4ff12c65
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue Mar 6 13:56:53 2018 +0100

    Added description to stream-config EIP docs
---
 camel-core/src/main/docs/eips/stream-config-eip.adoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/camel-core/src/main/docs/eips/stream-config-eip.adoc b/camel-core/src/main/docs/eips/stream-config-eip.adoc
index 436b96a..ab91316 100644
--- a/camel-core/src/main/docs/eips/stream-config-eip.adoc
+++ b/camel-core/src/main/docs/eips/stream-config-eip.adoc
@@ -1,6 +1,7 @@
 [[stream-config-eip]]
 == Stream-config EIP
 
+Stream-processing resequence EIP
 
 // eip options: START
 The Stream-config EIP supports 6 options which are listed below:

-- 
To stop receiving notification emails like this one, please contact
acosentino@apache.org.