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
The following commit(s) were added to refs/heads/master by this push:
new 5a8abd62 Polished
5a8abd62 is described below
commit 5a8abd62344c018a7dfd28e4ccf6a533c205b116
Author: Claus Ibsen <[email protected]>
AuthorDate: Sat May 9 09:17:45 2020 +0200
Polished
---
.../main/java/org/apache/camel/ExtendedCamelContext.java | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git
a/core/camel-api/src/main/java/org/apache/camel/ExtendedCamelContext.java
b/core/camel-api/src/main/java/org/apache/camel/ExtendedCamelContext.java
index b75c91e..0546459 100644
--- a/core/camel-api/src/main/java/org/apache/camel/ExtendedCamelContext.java
+++ b/core/camel-api/src/main/java/org/apache/camel/ExtendedCamelContext.java
@@ -565,12 +565,25 @@ public interface ExtendedCamelContext extends
CamelContext {
*/
void setSupervisingRouteController(SupervisingRouteController
supervisingRouteController);
+ /**
+ * Internal {@link RouteController} that are only used internally by Camel
to
+ * perform basic route operations. Do not use this as end user.
+ */
RouteController getInternalRouteController();
+ /**
+ * Internal API for adding routes. Do not use this as end user.
+ */
void addRoute(Route route);
+ /**
+ * Internal API for removing routes. Do not use this as end user.
+ */
void removeRoute(Route route);
+ /**
+ * Internal API for creating error handler. Do not use this as end user.
+ */
Processor createErrorHandler(Route route, Processor processor) throws
Exception;
}