concurrency
concurrency copied to clipboard
Eclipse Project for Concurrency Utilities
I'm looking at https://jakarta.ee/specifications/concurrency/3.0/jakarta-concurrency-spec-3.0.html#contextservice but it makes no mention of `jakarta.enterprise.concurrent.ContextServiceDefinition` and still mentions "The following section illustrates some possible configuration options that a Jakarta EE Product Provider may want...
Currently, there are a number of tests that will use `Thread.sleep()` to pause execution to wait for task completion. During the TCK port I centralized this activity to a single...
Some CDI users would like to be able inject the default instances of ManagedExecutorService, ManagedScheduledExecutorService and/or ContextService into CDI beans with `@Inject` instead of `@Resource`. For example, ``` @Inject ManagedExecutorService...
Signed-off-by: Steve Millidge
Hello, the tests expect, that saving of the current thread context happen when the object (e.g. ManagedThreadFactory) is looked up in JNDI tree. This seems strange -- it makes much...
It's general a good practice to add annotation literals to annotations that are used in CDI environments. We forgot these for the Faces 2.3 spec, and got quite a bit...
Based on feedback on PR: https://github.com/eclipse-ee4j/jakartaee-tck/pull/816 The standalone TCK needs to implement a similar feature as the Platform TCK vehicle infrastructure. This means that all tests in packages `ee.jakarta.tck.concurrent.api.*` need...
Comments on the release review of Concurrency 3.0 from @edbratt that we can address in the following release: > I did notice that the TCK JAR does not contain test...
Annotation to define max concurrency for access to a method or bean. This was first mooted on the EJB spec but adding to concurrency would mean this could be used...
Create a Lock annotation that is functionally equivalent to the EJB Lock annotation but is more general in scope and therefore can be used more generally across the platform. see...