An Introduction to Java Threads
Threads in Java are a convenient way to run multiple tasks concurrently (i.e. simultaneously), to optimise for performance and ressource usage (CPU for example).
Next to the main thread, you can implement worker threads. This can be done through two...
valerieross.hashnode.dev2 min read