Viewing profile — Holo314
Holo314
HN member- Joined
- Tue, Mar 21, 2023, 10:42 PM UTC
- HN karma
- 3
- Public activity
- 3 items
- HN profile
- View on Hacker News ↗
About Holo314
No profile information was provided.
Recent public activity
-
comment
Comment #35254342
Java is built upon it's community :), look no further: https://github.com/Randgalt/record-builder , although hiding the constructor behind the builder is not something I am sure su…
-
comment
Comment #35254154
Virtual threads are designed for light, IO-bound, tasks, if your task is heavy/CPU-bound tasks then you won't necessarily want to switch to virtual threads with ScopedValue.
-
comment
Comment #35253984
- ScopedValue doesn't have a direct equivalent in Kotlin, but CoroutineContext.Element and ThreadContextElement inside of CoroutineContext serve the same purpose. I really think Ko…