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

rzo1 pushed a change to branch concurency
in repository https://gitbox.apache.org/repos/asf/tomee.git


    from 6b87dd2f36 Setup Concurrency TCK
     new e9c554d6a9 Implement @Asynchronous(runAt=@Schedule(...)) for Jakarta 
Concurrency 3.1
     new ffe731c2e5 Add virtual thread support and DD virtual attribute for 
Concurrency 3.1
     new 6a237b6a46 Remove unused code from Concurrency 3.1 implementation
     new b187200b46 Add CronTrigger tests verifying ZonedTrigger works with 
existing scheduler

The 4 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:
 .gitignore                                         |   6 +-
 .../concurrency/ScheduledAsynchronousTest.java     |  95 ++++++++
 .../tests/concurrency/VirtualThreadTest.java       | 132 +++++++++++
 .../cdi/concurrency/AsynchronousInterceptor.java   |  94 +++++++-
 .../openejb/cdi/concurrency/ScheduleHelper.java    | 181 +++++++++++++++
 .../apache/openejb/config/AnnotationDeployer.java  |   3 +
 .../ConvertManagedExecutorServiceDefinitions.java  |   1 +
 ...ManagedScheduledExecutorServiceDefinitions.java |   1 +
 .../ConvertManagedThreadFactoryDefinitions.java    |   1 +
 .../thread/ManagedExecutorServiceImplFactory.java  |  16 ++
 ...ManagedScheduledExecutorServiceImplFactory.java |  58 ++++-
 .../thread/ManagedThreadFactoryImplFactory.java    |  11 +-
 .../threads/impl/ManagedThreadFactoryImpl.java     |  27 ++-
 .../openejb/threads/impl/VirtualThreadHelper.java  | 148 ++++++++++++
 .../cdi/concurrency/AsynchronousScheduledTest.java | 101 ++++++++
 .../cdi/concurrency/ScheduleHelperTest.java        | 258 +++++++++++++++++++++
 .../config/ConvertVirtualDefinitionsTest.java      | 141 +++++++++++
 .../ManagedScheduledExecutorServiceTest.java       |  62 +++++
 .../impl/ManagedThreadFactoryVirtualTest.java      | 114 +++++++++
 .../threads/impl/VirtualThreadHelperTest.java      | 117 ++++++++++
 .../org/apache/openejb/jee/ManagedExecutor.java    |  11 +
 .../openejb/jee/ManagedScheduledExecutor.java      |  11 +
 .../apache/openejb/jee/ManagedThreadFactory.java   |  11 +
 23 files changed, 1584 insertions(+), 16 deletions(-)
 create mode 100644 
arquillian/arquillian-tomee-tests/arquillian-tomee-webprofile-tests/src/test/java/org/apache/openejb/arquillian/tests/concurrency/ScheduledAsynchronousTest.java
 create mode 100644 
arquillian/arquillian-tomee-tests/arquillian-tomee-webprofile-tests/src/test/java/org/apache/openejb/arquillian/tests/concurrency/VirtualThreadTest.java
 create mode 100644 
container/openejb-core/src/main/java/org/apache/openejb/cdi/concurrency/ScheduleHelper.java
 create mode 100644 
container/openejb-core/src/main/java/org/apache/openejb/threads/impl/VirtualThreadHelper.java
 create mode 100644 
container/openejb-core/src/test/java/org/apache/openejb/cdi/concurrency/AsynchronousScheduledTest.java
 create mode 100644 
container/openejb-core/src/test/java/org/apache/openejb/cdi/concurrency/ScheduleHelperTest.java
 create mode 100644 
container/openejb-core/src/test/java/org/apache/openejb/config/ConvertVirtualDefinitionsTest.java
 create mode 100644 
container/openejb-core/src/test/java/org/apache/openejb/threads/impl/ManagedThreadFactoryVirtualTest.java
 create mode 100644 
container/openejb-core/src/test/java/org/apache/openejb/threads/impl/VirtualThreadHelperTest.java

Reply via email to