buildbot failure in ASF Buildbot on camel-site-production

2013-12-19 Thread buildbot
The Buildbot has detected a new failure on builder camel-site-production while 
building ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/camel-site-production/builds/15372

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: The Nightly scheduler named 'camel-site-production' triggered 
this build
Build Source Stamp: [branch camel/website] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot





[CONF] Apache Camel > SEDA

2013-12-19 Thread willem jiang (Confluence)














  


willem jiang edited the page:
 


SEDA   






...
You can append query options to the URI in the following format: ?option=value&option=value&… 
Options



 Wiki Markup




 
{div:class=confluenceTableSmall}
|| Name || Since || Default || Description ||
| {{size}} | |  | The maximum capacity of the SEDA queue (i.e., the number of messages it can hold). The default value in Camel 2.2 or older is {{1000}}. From Camel 2.3 onwards, the size is unbounded by default. *Notice:* Mind if you use this option, then its the first endpoint being created with the queue name, that determines the size. To make sure all endpoints use same size, then configure the size option on all of them, or the first endpoint being created. From *Camel 2.11* onwards, a validation is taken place to ensure if using mixed queue sizes for the same queue name, Camel would detect this and fail creating the endpoint. |
| {{concurrentConsumers}} | | {{1}} | Number of concurrent threads processing exchanges. |
| {{waitForTaskToComplete}} | | {{IfReplyExpected}} | Option to specify whether the caller should wait for the async task to complete or not before continuing. The following three options are supported: {{Always}}, {{Never}} or {{IfReplyExpected}}. The first two values are self-explanatory. The last value, {{IfReplyExpected}}, will only wait if the message is [Request Reply] based. The default option is {{IfReplyExpected}}. See more information about [Async] messaging. |
| {{timeout}} | | {{3}} | Timeout (in milliseconds) before a SEDA producer will stop waiting for an asynchronous task to complete. See {{waitForTaskToComplete}} and [Async] for more details. In *Camel 2.2* you can now disable timeout by using 0 or a negative value. |
| {{multipleConsumers}} | *2.2* | {{false}} | Specifies whether multiple consumers are allowed. If enabled, you can use [SEDA] for [Publish-Subscribe|http://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern] messaging. That is, you can send a message to the SEDA queue and have each consumer receive a copy of the message. When enabled, this option should be specified on every consumer endpoint. |
| {{limitConcurrentConsumers}} | *2.3* | {{true}} | Whether to limit the number of {{concurrentConsumers}} to the maximum of {{500}}. By default, an exception will be thrown if a SEDA endpoint is configured with a greater number. You can disable that check by turning this option off. |
| {{blockWhenFull}} | *2.9* | {{false}} | Whether a thread that sends messages to a full SEDA queue will block until the queue's capacity is no longer exhausted.  By default, an exception will be thrown stating that the queue is full. By enabling this option, the calling thread will instead block and wait until the message can be accepted. |
| {{queueSize}} | *2.9* |  | *Component only:* The maximum default size (capacity of the number of messages it can hold) of the SEDA queue. This option is used if {{size}} is not in use. |
| {{pollTimeout}} | *2.9.3* | {{1000}} | _Consumer only_ -- The timeout used when polling. When a timeout occurs, the consumer can check whether it is allowed to continue running. Setting a lower value allows the consumer to react more quickly upon shutdown. |
| {{purgeWhenStopping}} | *2.11.1* | {{false}} | Whether to purge 

svn commit: r891144 - in /websites/production/camel/content: cache/main.pageCache content-based-router.html wire-tap.html

2013-12-19 Thread buildbot
Author: buildbot
Date: Fri Dec 20 05:37:26 2013
New Revision: 891144

Log:
Production update by buildbot for camel

Modified:
websites/production/camel/content/cache/main.pageCache
websites/production/camel/content/content-based-router.html
websites/production/camel/content/wire-tap.html

Modified: websites/production/camel/content/cache/main.pageCache
==
Binary files - no diff available.

Modified: websites/production/camel/content/content-based-router.html
==
--- websites/production/camel/content/content-based-router.html (original)
+++ websites/production/camel/content/content-based-router.html Fri Dec 20 
05:37:26 2013
@@ -41,7 +41,6 @@
   
   
   
-  
   
   
   SyntaxHighlighter.defaults['toolbar'] = false;
@@ -86,21 +85,11 @@

 
 
-

Content Based Router

- -

The http://www.enterpriseintegrationpatterns.com/ContentBasedRouter.html"; rel="nofollow">Content Based Router from the EIP patterns allows you to route messages to the correct destination based on the contents of the message exchanges.

- -

http://www.enterpriseintegrationpatterns.com/img/ContentBasedRouter.gif"; data-image-src="http://www.enterpriseintegrationpatterns.com/img/ContentBasedRouter.gif";>

- -

The following example shows how to route a request from an input seda:a endpoint to either seda:b, seda:c or seda:d depending on the evaluation of various Predicate expressions

- -

Using the Fluent Builders

-
-