You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2022/06/17 15:12:31 UTC

[camel] branch regen_bot updated (95c4bcff6e3 -> 6ce0c91e28f)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git


 discard 95c4bcff6e3 Regen for commit 31c59ab989b477f05a4ed5f8f844786ec6cfb403
     add 72af230f652 CAMEL-18128: use a single constant for commonly addressing the resume strategy
     add 26086db62a3 CAMEL-18128: delay the initialization of the producer/consumer
     add e8896bc3ab4 CAMEL-18128: allow determining the desirable resume cache fill policy
     add 75a75ca47b0 CAMEL-18128: provide a way for integrations to configure specific details for the resume strategy
     add 6ce0c91e28f Regen for commit 75a75ca47b0fbea3ef61a7a774b003b9f9800e20

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (95c4bcff6e3)
            \
             N -- N -- N   refs/heads/regen_bot (6ce0c91e28f)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

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