This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 0fb1567f8a31e52b91f59c2e9d120ba6d0d5dfaf Author: KΓ©vin LACIRE <[email protected]> AuthorDate: Thu Mar 24 14:59:18 2022 +0100 π documenting new parameters' accessors --- .../camel/component/azure/eventhubs/EventHubsConfiguration.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/components/camel-azure/camel-azure-eventhubs/src/main/java/org/apache/camel/component/azure/eventhubs/EventHubsConfiguration.java b/components/camel-azure/camel-azure-eventhubs/src/main/java/org/apache/camel/component/azure/eventhubs/EventHubsConfiguration.java index 7018de1d1ca..df64560d627 100644 --- a/components/camel-azure/camel-azure-eventhubs/src/main/java/org/apache/camel/component/azure/eventhubs/EventHubsConfiguration.java +++ b/components/camel-azure/camel-azure-eventhubs/src/main/java/org/apache/camel/component/azure/eventhubs/EventHubsConfiguration.java @@ -319,6 +319,9 @@ public class EventHubsConfiguration implements Cloneable { return checkpointBatchSize; } + /** + * Sets the batch size between each checkpoint updates. Works jointly with {@link #checkpointBatchTimeout} + */ public void setCheckpointBatchSize(int checkpointBatchSize) { this.checkpointBatchSize = checkpointBatchSize; } @@ -327,6 +330,9 @@ public class EventHubsConfiguration implements Cloneable { return checkpointBatchTimeout; } + /** + * Sets the batch timeout between each checkpoint updates. Works jointly with {@link #checkpointBatchSize} + */ public void setCheckpointBatchTimeout(int checkpointBatchTimeout) { this.checkpointBatchTimeout = checkpointBatchTimeout; }
