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 0649f57 Reduce logging noise add 59c8d80 CAMEL-16451: camel-core - ExchangePooling for EIPs. Wiretap EIP add b19ba05 CAMEL-16451: camel-core - ExchangePooling for EIPs. Wiretap EIP add 54c5f2c CAMEL-16451: camel-core - ExchangePooling for EIPs. Wiretap EIP add c8dd388 camel-core - Fixed java.util.ConcurrentModificationException when using extended endpoint utilization statistics. add ab47d9b CAMEL-16451: camel-core - ExchangePooling for EIPs. Wiretap EIP No new revisions were added by this update. Summary of changes: .../org/apache/camel/ExtendedCamelContext.java | 11 ++ .../camel/spi/EndpointUtilizationStatistics.java | 2 +- .../java/org/apache/camel/spi/ExchangeFactory.java | 3 + .../apache/camel/spi/ProcessorExchangeFactory.java | 78 +++++++++++++ .../camel/impl/engine/AbstractCamelContext.java | 24 ++++ ...ry.java => PooledProcessorExchangeFactory.java} | 124 ++++++++------------- ...java => PrototypeProcessorExchangeFactory.java} | 100 +++++++---------- .../camel/impl/engine/SimpleCamelContext.java | 12 ++ .../camel/impl/ExtendedCamelContextConfigurer.java | 6 + .../camel/impl/lw/LightweightCamelContext.java | 11 ++ .../impl/lw/LightweightRuntimeCamelContext.java | 13 +++ .../apache/camel/processor/WireTapProcessor.java | 36 +++--- .../org/apache/camel/reifier/WireTapReifier.java | 3 +- .../camel/main/DefaultConfigurationConfigurer.java | 6 + .../DefaultEndpointUtilizationStatistics.java | 2 +- 15 files changed, 272 insertions(+), 159 deletions(-) create mode 100644 core/camel-api/src/main/java/org/apache/camel/spi/ProcessorExchangeFactory.java copy core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/{PooledExchangeFactory.java => PooledProcessorExchangeFactory.java} (51%) copy core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/{PrototypeExchangeFactory.java => PrototypeProcessorExchangeFactory.java} (54%)