Java Thread Programming (Part 14)
What happens if the child-task creates more tasks and the parent-task waits for the child-tasks to finish in TheadPool in java.

A N M Bazlur Rahman
4,000 viewsWhat happens if the child-task creates more tasks and the parent-task waits for the child-tasks to finish in TheadPool in java.

Carl Dea
17,145 viewsimagine C code capable of performing a computation and after its completion the C code will notify Java code to perform updates to JavaFX …

Nicolas Frankel
3,472 viewsAlmost all Java developers are familiar with logging frameworks like Log4j, but not the System.Logger that has been available since java 9.

A N M Bazlur Rahman
6,736 viewsWhat is the maximum number of worker threads we can put in a ThreadPool? Let's find out today on Foojay's amazing Java threading series!

A N M Bazlur Rahman
6,188 viewsLet's find out what are the ways to create ThreadPool using Executor framework in java and use result-bearing tasks using Callable and …

A N M Bazlur Rahman
4,678 viewsLearn how to ask the executor framework at startup to provision threads for us and they will be reused as long as the application runs.

Deepu K Sasidharan
3,730 viewsPattern matching is a language feature where you can test for a specific pattern on a character sequence or a data structure.
A N M Bazlur Rahman
3,594 viewsLet's learn about BlockingQueue, one of the essential concurrent collections available in the concurrent package in the JDK.
Wim Deblauwe
5,515 viewsI always struggled with how to implement equals and hashcode, until I learned about the difference between entities and value objects!

A N M Bazlur Rahman
5,112 viewsHave you ever wondered what is the purpose of the "wait()", "notify()", "notifyAll()" methods that come with each Java object?