You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2023/12/06 11:24:54 UTC

(camel) branch main updated (274754f5cbb -> 6ae8aa7089d)

This is an automated email from the ASF dual-hosted git repository.

nfilotto pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


    from 274754f5cbb CAMEL-19991: Make platform-http jetty dependencies test scope
     add 6ae8aa7089d CAMEL-20187: Add basic support of virtual threads (#12292)

No new revisions were added by this update.

Summary of changes:
 Jenkinsfile.jdk21                                  |   3 +-
 .../impl/DefaultExecutorServiceManagerTest.java    |   3 +
 .../camel/processor/WireTapAbortPolicyTest.java    |   3 +
 .../AggregateTimeoutWithNoExecutorServiceTest.java |   3 +
 .../DualManagedThreadPoolProfileTest.java          |   3 +
 .../DualManagedThreadPoolWithIdTest.java           |   3 +
 .../management/ManagedRouteRemoveWireTapTest.java  |   3 +
 .../management/ManagedThreadPoolProfileTest.java   |   3 +
 .../camel/management/ManagedThreadPoolTest.java    |   3 +
 .../management/ManagedThreadPoolWithIdTest.java    |   3 +
 core/camel-support/pom.xml                         |  49 +++++
 .../camel/support/DefaultThreadPoolFactory.java    | 208 +++++++++++++++++++++
 core/camel-util/pom.xml                            |  47 +++++
 .../util/concurrent/ThreadFactoryTypeAware.java    |  32 ++++
 .../apache/camel/util/concurrent/ThreadType.java   |  30 +++
 .../camel/util/concurrent/CamelThreadFactory.java  |  91 +++++++++
 .../apache/camel/util/concurrent/ThreadType.java   |  38 ++++
 .../modules/ROOT/pages/threading-model.adoc        |  12 ++
 18 files changed, 536 insertions(+), 1 deletion(-)
 create mode 100644 core/camel-support/src/main/java21/org/apache/camel/support/DefaultThreadPoolFactory.java
 create mode 100644 core/camel-util/src/main/java/org/apache/camel/util/concurrent/ThreadFactoryTypeAware.java
 create mode 100644 core/camel-util/src/main/java/org/apache/camel/util/concurrent/ThreadType.java
 create mode 100644 core/camel-util/src/main/java21/org/apache/camel/util/concurrent/CamelThreadFactory.java
 create mode 100644 core/camel-util/src/main/java21/org/apache/camel/util/concurrent/ThreadType.java