-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathSynchronizeVirtualThreadTest.java
47 lines (39 loc) · 1.24 KB
/
SynchronizeVirtualThreadTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import java.util.Scanner;
import java.util.concurrent.Executors;
/**
* Try to run in JDK 21 and 24.
* To run: `java -Djdk.virtualThreadScheduler.parallelism=2 -Djdk.tracePinnedThreads=short SynchronizeVirtualThreadTest.java`
*/
public class SynchronizeVirtualThreadTest {
public static void main(String[] args) {
// platform threads runs normally
// var executor = Executors.newFixedThreadPool(2);
// until Java 24, with parallelism 2, only two virtual thread will run by time
// the virtual threads gets pinned and blocked waiting forever
var factory = Thread.ofVirtual().name("VT-", 0).factory();
var executor = Executors.newThreadPerTaskExecutor(factory);
var riskOperation = new RiskOperation();
for (int i = 0; i < 5; i++) {
executor.submit(riskOperation::doSomething);
}
while (!executor.isTerminated()) {
;
}
}
}
class RiskOperation {
void doSomething() {
log("About to start a synchronized work");
this.doSynchronizedWork();
log("Work done");
}
synchronized void doSynchronizedWork() {
log("Doing synchronized work...");
try {
Thread.sleep(1_000);
} catch (InterruptedException ex) {}
}
void log(String message) {
System.out.printf("%s - %s%n", Thread.currentThread().toString(), message);
}
}