This is an automated email from the ASF dual-hosted git repository.
orpiske pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
from 31c59ab989b CAMEL-18151: camel-jbang - Export should be a single
command making it easier to use from ci/cd
new 72af230f652 CAMEL-18128: use a single constant for commonly addressing
the resume strategy
new 26086db62a3 CAMEL-18128: delay the initialization of the
producer/consumer
new e8896bc3ab4 CAMEL-18128: allow determining the desirable resume cache
fill policy
new 75a75ca47b0 CAMEL-18128: provide a way for integrations to configure
specific details for the resume strategy
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../kafka/KafkaResumeStrategyConfiguration.java | 61 +++++++
.../KafkaResumeStrategyConfigurationBuilder.java | 187 +++++++++++++++++++++
.../resume/kafka/MultiNodeKafkaResumeStrategy.java | 52 ++----
.../kafka/SingleNodeKafkaResumeStrategy.java | 128 ++++----------
.../java/org/apache/camel/resume/Cacheable.java | 24 +++
.../org/apache/camel/resume/ResumeStrategy.java | 1 +
...Aware.java => ResumeStrategyConfiguration.java} | 22 ++-
...ava => ResumeStrategyConfigurationBuilder.java} | 21 ++-
.../org/apache/camel/reifier/ResumableReifier.java | 2 +-
.../BasicResumeStrategyConfigurationBuilder.java | 41 +++++
10 files changed, 381 insertions(+), 158 deletions(-)
create mode 100644
components/camel-kafka/src/main/java/org/apache/camel/processor/resume/kafka/KafkaResumeStrategyConfiguration.java
create mode 100644
components/camel-kafka/src/main/java/org/apache/camel/processor/resume/kafka/KafkaResumeStrategyConfigurationBuilder.java
copy
core/camel-api/src/main/java/org/apache/camel/resume/{ConsumerListenerAware.java
=> ResumeStrategyConfiguration.java} (57%)
copy
core/camel-api/src/main/java/org/apache/camel/resume/{ConsumerListenerAware.java
=> ResumeStrategyConfigurationBuilder.java} (53%)
create mode 100644
core/camel-support/src/main/java/org/apache/camel/support/resume/BasicResumeStrategyConfigurationBuilder.java