You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bu...@apache.org on 2013/01/21 15:18:31 UTC

svn commit: r847458 - in /websites/production/camel/content: cache/main.pageCache graceful-shutdown.html

Author: buildbot
Date: Mon Jan 21 14:18:31 2013
New Revision: 847458

Log:
Production update by buildbot for camel

Modified:
    websites/production/camel/content/cache/main.pageCache
    websites/production/camel/content/graceful-shutdown.html

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

Modified: websites/production/camel/content/graceful-shutdown.html
==============================================================================
--- websites/production/camel/content/graceful-shutdown.html (original)
+++ websites/production/camel/content/graceful-shutdown.html Mon Jan 21 14:18:31 2013
@@ -87,7 +87,7 @@
 <ul class="alternate" type="square"><li><b>Camel 2.2:</b> in the same order they was started</li><li><b>Camel 2.3:</b> in the reverse order they was started. The option <tt>shutdownRoutesInReverseOrder</tt> can be used to use the old behavior.</li><li>let pending and current in flight exchanges run to completion before shutting down</li><li>using a timeout of 300 seconds which then forces a shutdown now</li></ul>
 
 
-<p>You can configure the timeout and whether it should shutdown now remainder routes when the timeout occurred or ignore. See the setters on the class.</p>
+<p>You can configure the timeout, and whether it should shutdown now remaining routes when the timeout occurred or ignore. See the setters on the class.</p>
 
 <p>It will output to log the progress during graceful shutdown as shown in an example below</p>
 <div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
@@ -105,7 +105,7 @@
 </pre>
 </div></div>
 
-<p>Notice how it waits while there are inflight exchanges still be processed before it can shutdown.</p>
+<p>Notice how it waits while there are inflight exchanges still being processed before it can shutdown.</p>
 
 <h3><a shape="rect" name="GracefulShutdown-Controllingorderingofroutes"></a>Controlling ordering of routes</h3>
 <p>You can configure the order in which routes should be started, and thus also the same order they are being shutdown.<br clear="none">
@@ -113,10 +113,10 @@ See more at <a shape="rect" href="config
 
 <h3><a shape="rect" name="GracefulShutdown-Finegrainedconfiguration"></a>Fine grained configuration</h3>
 <p>You can control two areas that influence graceful shutdown in the Camel routing:</p>
-<ul class="alternate" type="square"><li><tt>ShutdownRoute</tt></li><li><tt>ShutdownRunningTaks</tt></li></ul>
+<ul class="alternate" type="square"><li><tt>ShutdownRoute</tt></li><li><tt>ShutdownRunningTask</tt></li></ul>
 
 
-<p>These options can be configured on two scopes: <tt>context</tt> and <tt>route</tt>. Where a route will fallback to the <tt>context</tt> scoped option, if not explicit configured. (same principle as <a shape="rect" href="error-handler.html" title="Error Handler">Error Handler</a> etc.).</p>
+<p>These options can be configured on two scopes: <tt>context</tt> and <tt>route</tt>. Where a route will fallback to the <tt>context</tt> scoped option, if not explicit configured. (same principle as <a shape="rect" href="error-handler.html" title="Error Handler">Error Handler</a>, etc.).</p>
 
 <h4><a shape="rect" name="GracefulShutdown-ShutdownRoute"></a>ShutdownRoute</h4>
 <p>This option can control how a given route should act during graceful shutdown. It has two values <tt>Default</tt> and <tt>Defer</tt>. The <tt>Default</tt> is obviously the default option which lets Camel shutdown the route as early as possible. The <tt>Defer</tt> is used to defer shutting down this route to a later stage. This is useful when other routes are dependent upon it. For example an internal route which other routes reuse.</p>