This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel.git.
from 0649f57 Reduce logging noise new 59c8d80 CAMEL-16451: camel-core - ExchangePooling for EIPs. Wiretap EIP new b19ba05 CAMEL-16451: camel-core - ExchangePooling for EIPs. Wiretap EIP new 54c5f2c CAMEL-16451: camel-core - ExchangePooling for EIPs. Wiretap EIP new c8dd388 camel-core - Fixed java.util.ConcurrentModificationException when using extended endpoint utilization statistics. new ab47d9b CAMEL-16451: camel-core - ExchangePooling for EIPs. Wiretap EIP The 5 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: .../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%)