|
|
|
|
|
by xcv123
1036 days ago
|
|
The difference now is that it's implemented in the JVM instead of a library / framework. It is easier, simpler, and probably more efficient. You can get higher throughput from existing code with minor refactoring. Thread thread = Thread.ofVirtual().start(() -> System.out.println("Hello"));
thread.join();
|
|
https://openjdk.org/jeps/444