↧
Can you see a java.util.concurrent.locks lock in a thread dump?
Before Java version 5, there was only one tool in the multithreading toolbox for protecting critical sections of code with a lock: synchronized methods and code sections. To date, synchronized remains...
View ArticleComparison of concurrency features of Java and C#
As promised in my previous post, here’s a quick comparison of concurrency management techniques in multithreaded application between Java and C#. First thing I’d like to get off my chest is to mention...
View Article