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/01/20 15:29:11 UTC

[camel] 06/06: CAMEL-14354: Optimize core

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 60f78f51e06f776ea051b5c5d5b8faeedd0794f2
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Jan 20 16:03:48 2020 +0100

    CAMEL-14354: Optimize core
---
 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc
index acec046..2c8eb66 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide.adoc
@@ -131,6 +131,11 @@ You can use these methods by adapting to the extended exchange as shown below:
 exchange.adapt(ExtendedExchange.class).addOnCompletion(...);
 ----
 
+==== UnitOfWork
+
+For advanced Camel users whom implement custom `UnitOfWork` should implement the new `isBeforeAfterProcess()' method and return true of false,
+whether Camel should invoke the before and after processor methods.
+
 ==== Cookies
 
 Cookies from `camel-http-common` has been moved into a new `camel-http-base` JAR.