Y
Hacker News
new
|
ask
|
show
|
jobs
by
jayd16
948 days ago
Well for one, virtual threads would be implicit blocking and this style is explicit.
1 comments
_ZeD_
948 days ago
so kotlin functions are colored while java ones are colorless?
link
tadfisher
948 days ago
Java doesn't have an equivalent to Kotlin's 'suspend fun'. The CoroutineScope abstraction ('launch', 'join', 'await', etc) is also absent, at least until Structured Concurrency gets released [1] and Java gains StructuredTaskScope.
1:
https://openjdk.org/jeps/462
link