From 1ba23ae8b7ee4bdcb968670cd148376a4aeb01be Mon Sep 17 00:00:00 2001 From: Dan Moore Date: Mon, 24 Oct 2022 20:13:08 -0600 Subject: [PATCH 1/2] added note about project loom. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 8955b08..571fd5f 100644 --- a/README.md +++ b/README.md @@ -200,6 +200,14 @@ The general requirements and roadmap are as follows: * [ ] Support multipart form data * [ ] Support HTTP 2 +## Why no Loom? + +Project Loom is an exciting development which brings a lot of great new features to Java, such as fibers, continuations and more. + +However, this project doesn't currently use Loom. As of Java 19, Loom is a preview release only. Therefore, you can't use it without compiled code that is difficult to use in future Java LTS releases. + +This project is anchored to features in Java LTS releases only to balance use of new, awesome language features and future proofing. + ## Helping out We are looking for Java developers that are interested in helping us build the client and server. If you know a ton about networks and protocols and love writing clean, high-performance Java, contact us at dev@fusionauth.io. From 620bc968007b380c2c8e907ce4f03a0defbac4bc Mon Sep 17 00:00:00 2001 From: Dan Moore Date: Mon, 24 Oct 2022 20:19:01 -0600 Subject: [PATCH 2/2] More notes about loom. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 571fd5f..6ef90bd 100644 --- a/README.md +++ b/README.md @@ -206,7 +206,7 @@ Project Loom is an exciting development which brings a lot of great new features However, this project doesn't currently use Loom. As of Java 19, Loom is a preview release only. Therefore, you can't use it without compiled code that is difficult to use in future Java LTS releases. -This project is anchored to features in Java LTS releases only to balance use of new, awesome language features and future proofing. +This project is anchored to features in Java LTS releases only to balance use of new, awesome language features and future proofing. When Loom functionality is in the next Java LTS, it'll be evaluated for use. ## Helping out