vertx-virtual-threads-incubator icon indicating copy to clipboard operation
vertx-virtual-threads-incubator copied to clipboard

Vert.x virtual threads incubator

Results 7 vertx-virtual-threads-incubator issues
Sort by recently updated
recently updated
newest added

#### Describe the feature This is a starting point for implementing an abstract virtual thread verticle. It works very well for me in production. #### Use cases All handlers created...

enhancement

Environment: jdk 19, vert.x 4.4.4 Request Content : POST /test HTTP/1.1 Authorization: 14288617be8a4bfa805e2e24cbff324a User-Agent: PostmanRuntime/7.32.3 Accept: */* Postman-Token: 0838b7ae-5f48-4f7e-adb1-40752b579440 Host: localhost:7001 Accept-Encoding: gzip, deflate, br Connection: keep-alive Content-Type: multipart/form-data; boundary=--------------------------892028311293841493076041...

enhancement

### Version 4.4.2 (latest) ### Context Suppose I create a netty grpc server on a virtual thread context. Observe the following error when the server is stopped: ```java java.lang.NullPointerException: Cannot...

bug

These tests show that `Thread.currentThread().isInterrupted()` doesn't get set to `true`, as expected, when a virtual thread is interrupted in Vertx. Additionally, the `DefaultVirtualThreadContextTest` cannot interrupt `Thread.Sleep()`, but it's not clear...

Motivation: Already completed futures should not park the thread. Currently, they do. This can improve performance. This also resolves an ordering issue in the default event loop context.

Signed-off-by: Paulo Lopes Motivation: This is a first step to allow mutating the internals of the router, which will later allow add the concept of filters