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 2021/02/28 13:39:10 UTC

[camel] branch regen_bot updated (c266ad3 -> 4918944)

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.


    from c266ad3  CAMEL-16271: camel-core - ReactiveExecutor add option to turn on|off statistics
     add 15d2217  camel-core - Use class instead of lambda as it makes profiling/debugging easier instead of lambda anonymous classes in hotspots in the routing engine.
     add a2c9cc0  camel-http - optimize a bit
     add b558530  CAMEL-16222: camel-core - ExchangeFactory SPI to allow to use exchange pooling
     add b4a53a3  Fixed test
     add ffbc3ed  CAMEL-16271: camel-core - ReactiveExecutor add option to turn on|off statistics
     add 4918944  [CAMEL-16270] Vertx: refactor Buffer converter for sharing across vertx components. (#5144)

No new revisions were added by this update.

Summary of changes:
 bom/camel-bom/pom.xml                              |  5 ++
 .../org/apache/camel/catalog/others.properties     |  1 +
 .../apache/camel/catalog/others/vertx-common.json  | 15 ++++
 .../camel/component/http/HttpEntityConverter.java  | 22 ++++--
 components/camel-platform-http-vertx/pom.xml       |  4 +
 .../http/vertx/VertxPlatformHttpConsumer.java      |  2 +-
 .../VertxPlatformHttpBufferConverterTest.java      | 86 ++++++++++++++++++++++
 .../camel/component/timer/TimerConsumer.java       |  5 +-
 .../{camel-vertx => camel-vertx-common}/pom.xml    | 21 ++----
 .../vertx/common}/VertxBufferConverterLoader.java  | 16 ++--
 .../services/org/apache/camel/TypeConverterLoader  |  2 +
 .../services/org/apache/camel/other.properties     |  7 ++
 .../src/generated/resources/vertx-common.json      | 15 ++++
 .../vertx/common}/VertxBufferConverter.java        | 24 +++++-
 components/camel-vertx-http/pom.xml                |  4 +
 .../services/org/apache/camel/TypeConverterLoader  |  2 -
 .../component/vertx/http/VertxHttpProducer.java    |  1 +
 .../vertx/kafka/VertxKafkaTypeConverterLoader.java | 36 ---------
 .../services/org/apache/camel/TypeConverterLoader  |  2 -
 .../vertx/kafka/VertxKafkaTypeConverter.java       | 32 --------
 .../vertx/kafka/VertxKafkaBufferConverterTest.java | 86 ++++++++++++++++++++++
 components/camel-vertx-kafka/pom.xml               |  5 ++
 components/camel-vertx/pom.xml                     |  4 +
 .../component/vertx/VertxBufferConverterTest.java  | 86 ++++++++++++++++++++++
 components/pom.xml                                 |  1 +
 core/camel-allcomponents/pom.xml                   |  4 +
 .../errorhandler/RedeliveryErrorHandler.java       | 31 +++++---
 .../RecipientListWithSimpleExpressionTest.java     |  4 +-
 .../ManagedDefaultReactiveExecutorTest.java        |  9 +++
 .../java/org/apache/camel/support/GZIPHelper.java  |  4 +-
 parent/pom.xml                                     |  5 ++
 31 files changed, 418 insertions(+), 123 deletions(-)
 create mode 100644 catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/vertx-common.json
 create mode 100644 components/camel-platform-http-vertx/src/test/java/org/apache/camel/component/platform/http/vertx/VertxPlatformHttpBufferConverterTest.java
 copy components/{camel-vertx => camel-vertx-common}/pom.xml (78%)
 rename components/{camel-vertx-http/src/generated/java/org/apache/camel/component/vertx/http => camel-vertx-common/src/generated/java/org/apache/camel/component/vertx/common}/VertxBufferConverterLoader.java (79%)
 create mode 100644 components/camel-vertx-common/src/generated/resources/META-INF/services/org/apache/camel/TypeConverterLoader
 create mode 100644 components/camel-vertx-common/src/generated/resources/META-INF/services/org/apache/camel/other.properties
 create mode 100644 components/camel-vertx-common/src/generated/resources/vertx-common.json
 rename components/{camel-vertx-http/src/main/java/org/apache/camel/component/vertx/http => camel-vertx-common/src/main/java/org/apache/camel/component/vertx/common}/VertxBufferConverter.java (74%)
 delete mode 100644 components/camel-vertx-http/src/generated/resources/META-INF/services/org/apache/camel/TypeConverterLoader
 delete mode 100644 components/camel-vertx-kafka/camel-vertx-kafka-component/src/generated/java/org/apache/camel/component/vertx/kafka/VertxKafkaTypeConverterLoader.java
 delete mode 100644 components/camel-vertx-kafka/camel-vertx-kafka-component/src/generated/resources/META-INF/services/org/apache/camel/TypeConverterLoader
 delete mode 100644 components/camel-vertx-kafka/camel-vertx-kafka-component/src/main/java/org/apache/camel/component/vertx/kafka/VertxKafkaTypeConverter.java
 create mode 100644 components/camel-vertx-kafka/camel-vertx-kafka-component/src/test/java/org/apache/camel/component/vertx/kafka/VertxKafkaBufferConverterTest.java
 create mode 100644 components/camel-vertx/src/test/java/org/apache/camel/component/vertx/VertxBufferConverterTest.java