You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2020/01/02 07:58:27 UTC

[camel] branch master updated (895a0c7 -> 38d7310)

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 895a0c7  Merge pull request #3456 from ahus1/fix-unescaped-content-in-components
     add 2faaf64  Polished
     add 22eedad  CAMEL-14340: Polished the ServicePool as its not generic anymore.
     add 285097a  CAMEL-14340: Remove statistics from producer/consumer cache as its requires LRUCache and we would like to avoid using it.
     add 551b2c5  CAMEL-14340: ServicePool for singleton should not use cache
     add 83ced4a  CAMEL-14340: ServicePool eviction should happen on-demand instead of lrucache background thread.
     add fc787fb  CAMEL-14340: ServicePool eviction should happen on-demand instead of lrucache background thread.
     add 6d3cd99  Regen
     add ee37115  CAMEL-14340: Removed docs about ServicePool as its not generic anymore.
     add c8a366e  CAMEL-14340: Polished javadoc for service pool
     add 38d7310  CAMEL-14340: Polished

No new revisions were added by this update.

Summary of changes:
 .../ConsumerTemplateMaximumCacheSizeTest.java      |  21 --
 .../ProducerTemplateMaximumCacheSizeTest.java      |  21 --
 .../java/org/apache/camel/spi/ConsumerCache.java   |  88 ++++++-
 .../java/org/apache/camel/spi/ProducerCache.java   |  37 +--
 .../camel/impl/engine/AbstractCamelContext.java    |  18 +-
 .../camel/impl/engine/DefaultConsumerCache.java    |  78 ++-----
 .../camel/impl/engine/DefaultConsumerTemplate.java |  10 +-
 .../camel/impl/engine/DefaultProducerCache.java    |  38 +---
 .../impl/engine/PollingConsumerServicePool.java    |  21 +-
 ...UuidGenerator.java => ProducerServicePool.java} |  22 +-
 .../org/apache/camel/impl/engine/ServicePool.java  | 252 +++++++++++++--------
 .../org/apache/camel/processor/SendProcessor.java  |   6 +-
 .../org/apache/camel/impl/DefaultCamelContext.java |  13 +-
 ...Test.java => ConsumerCacheOneCapacityTest.java} |  15 +-
 .../camel/impl/DefaultConsumerCacheTest.java       |   7 +-
 .../camel/impl/DefaultProducerCacheTest.java       | 120 +++++++++-
 .../apache/camel/impl/EmptyProducerCacheTest.java  |  65 ------
 .../camel/impl/ProducerCacheNonSingletonTest.java  |   6 +-
 .../mbean/ManagedConsumerCacheMBean.java           |  12 -
 .../mbean/ManagedProducerCacheMBean.java           |  12 -
 .../management/mbean/ManagedConsumerCache.java     |  20 --
 .../management/mbean/ManagedProducerCache.java     |  20 --
 .../management/ManagedConsumerCacheHitsTest.java   | 133 -----------
 docs/user-manual/modules/ROOT/pages/index.adoc     |   1 -
 .../modules/ROOT/pages/servicepool.adoc            |  55 -----
 .../modules/ROOT/pages/threading-model.adoc        |   7 +-
 examples/README.adoc                               |   4 +-
 .../pom.xml                                        |  11 +-
 28 files changed, 448 insertions(+), 665 deletions(-)
 copy components/camel-bonita/src/test/java/org/apache/camel/component/bonita/integration/BonitaIntegrationTestSupport.java => core/camel-base/src/main/java/org/apache/camel/impl/engine/PollingConsumerServicePool.java (64%)
 copy core/camel-base/src/main/java/org/apache/camel/impl/engine/{JavaUuidGenerator.java => ProducerServicePool.java} (63%)
 rename core/camel-core/src/test/java/org/apache/camel/impl/{ConsumerCacheZeroCapacityTest.java => ConsumerCacheOneCapacityTest.java} (87%)
 delete mode 100644 core/camel-core/src/test/java/org/apache/camel/impl/EmptyProducerCacheTest.java
 delete mode 100644 core/camel-management/src/test/java/org/apache/camel/management/ManagedConsumerCacheHitsTest.java
 delete mode 100644 docs/user-manual/modules/ROOT/pages/servicepool.adoc