project-loom
There are 21 repositories under project-loom topic.
rodrigovedovato/jetty-loom
Simple Jetty server using Project Loom
japplis/Virtually
A Java library to make code more virtual thread friendly
jesperancinha/good-story
An investigation and comparison between Kotlin and Java on an engineering level. Since beauty is in the eye of the beholder, this repository is not meant to evaluate Java or Kotlin on an aesthetic level.
ashwinbhaskar/project-loom
A short and practical intro into project loom
aliakh/demo-java-virtual-threads
'Concurrent programming in Java with virtual threads' article and source code.
SvenWoltmann/structured-concurrency
Demo code showing how to use Java's StructuredTaskScope
SvenWoltmann/virtual-threads
Demo code showing how to use Java's virtual threads.
SvenWoltmann/virtual-threads-spring
Spring demo application to compare controllers using CompletableFuture vs. virtual threads.
emaphis/java-loom
Java Loom Experiments
kpavlov/await4j
Simplify asynchronous programming in Java with Project Loom virtual threads and a familiar async/await style API
SvenWoltmann/scoped-values
Demo code showing how to use Java's scoped values
wesleyegberto/java-virtualthreads-chat
Chat using Java Virtual Threads from Java 19
oclay1st/JavaEvaluator
Remote math evaluator written in Java Virtual Threads
RichDaly/Multithreaded_Indexing_API
College Assignment to create a Multithreaded Indexing API using virtual threads that has a menu driven UI . Submitted January 2023 for Advanced Object Orientated Programming Module.
rossilor95/jerver
A simple HTTP server written from scratch for educational purposes.
tkrason/spring-jpa-playground
Example of Spring Boot JPA & non-blocking JDBC thanks to Project Loom
meowpunch/java-spring-concurrency
from zero to project loom
mgunawardhana/Spring-Boot-Virtual-Threads
In Java, a thread is a lightweight sub-process, the smallest unit of processing. It is a separate path of execution. Threads are independent, if there occurs exception in one thread, it doesn't affect other threads. It shares a common memory area.
neogeogre/loom-demo
First touch with java project loom
SvenWoltmann/virtual-threads-quarkus
Quarkus demo application to compare controllers using platform threads, CompletableFuture, and virtual threads.