This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // @author godmar@gmail.com | |
| /* Code demonstration of how to build deterministic coroutines on top of | |
| * virtual threads. | |
| * | |
| * Run with | |
| * java -Djdk.virtualThreadScheduler.parallelism=1 -Djdk.virtualThreadScheduler.maxPoolSize=1 CommandDemo | |
| */ | |
| import java.util.*; | |
| import java.util.concurrent.locks.*; |