This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push: new d68407769c6 (chores) camel-api: added missing Javadoc (#10932) d68407769c6 is described below commit d68407769c6cae61eefcfc40b3fcb042c115b37d Author: Otavio Rodolfo Piske <orpi...@users.noreply.github.com> AuthorDate: Mon Jul 31 18:41:28 2023 +0200 (chores) camel-api: added missing Javadoc (#10932) --- .../src/main/java/org/apache/camel/ExchangeExtension.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/core/camel-api/src/main/java/org/apache/camel/ExchangeExtension.java b/core/camel-api/src/main/java/org/apache/camel/ExchangeExtension.java index 60f625bba3f..ba9a0ba716f 100644 --- a/core/camel-api/src/main/java/org/apache/camel/ExchangeExtension.java +++ b/core/camel-api/src/main/java/org/apache/camel/ExchangeExtension.java @@ -251,7 +251,15 @@ public interface ExchangeExtension { */ void setDefaultConsumerCallback(AsyncCallback callback); + /** + * Returns whether the exchange has been failure handed + * @return true if failure handled or false otherwise + */ boolean isFailureHandled(); + /** + * Sets whether the exchange has been failure handled + * @param failureHandled true if failure handled or false otherwise + */ void setFailureHandled(boolean failureHandled); }