Understanding Thread Priority

Here is a little refresher on concept of threads in Java http://kamalmeet.com/java/multithreading-runnable-vs-thread/http://kamalmeet.com/java/handling-multithreading-with-synchronization/http://kamalmeet.com/java/synchronization-object-vs-class-level/ There can be times where you might want to give priority to one thread over another. Java provides you a way to do that by setting priority of threads. Thread.setPriority An Example But there is a catch. Threads are handled at the operating … Continue reading Understanding Thread Priority