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 2020/10/26 07:48:49 UTC

[camel] branch regen_bot updated (284c76e -> d2f9f03)

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 284c76e  Sync Properties
     add d2f9f03  CAMEL-15753: camel-core - Modularize and move internal processors into their own factory.

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/ExtendedCamelContext.java     | 15 +++++
 .../org/apache/camel/spi/InternalProcessor.java    |  3 +-
 .../apache/camel/spi/InternalProcessorFactory.java | 54 ++++++++++++++++++
 .../camel/impl/engine/AbstractCamelContext.java    | 29 +++++++++-
 .../apache/camel/impl/engine/DefaultChannel.java   |  8 +--
 .../camel/impl/engine/DefaultProducerCache.java    | 15 +----
 .../camel/impl/engine/SimpleCamelContext.java      | 10 ++++
 .../impl/engine/SubscribeMethodProcessor.java      |  8 +--
 .../camel/impl/ExtendedCamelContextConfigurer.java |  5 ++
 .../camel/impl/lw/LightweightCamelContext.java     | 11 ++++
 .../impl/lw/LightweightRuntimeCamelContext.java    | 17 +++++-
 .../org/apache/camel/internal-processor-factory    |  2 +
 .../processor/DefaultInternalProcessorFactory.java | 66 ++++++++++++++++++++++
 .../InterceptSendToEndpointProcessor.java          |  2 +-
 .../apache/camel/processor/UnitOfWorkProducer.java | 14 +----
 .../org/apache/camel/reifier/AggregateReifier.java |  9 +--
 .../apache/camel/reifier/OnCompletionReifier.java  |  9 +--
 .../org/apache/camel/reifier/ProcessorReifier.java |  4 +-
 .../apache/camel/reifier/ResequenceReifier.java    | 17 ++----
 .../org/apache/camel/reifier/RouteReifier.java     |  7 +--
 .../org/apache/camel/reifier/WireTapReifier.java   |  9 +--
 .../support/DefaultInterceptSendToEndpoint.java    | 11 +---
 22 files changed, 232 insertions(+), 93 deletions(-)
 create mode 100644 core/camel-api/src/main/java/org/apache/camel/spi/InternalProcessorFactory.java
 create mode 100644 core/camel-core-processor/src/generated/resources/META-INF/services/org/apache/camel/internal-processor-factory
 create mode 100644 core/camel-core-processor/src/main/java/org/apache/camel/processor/DefaultInternalProcessorFactory.java