Search Results

4
votes
2answers
240 views

Die you threadpoolexecutor

I have a java.util.concurrent.Execution service - a single threaded thread pool executor. I submit certain tasks to it. If the task throws an unchecked exception the thread dies but the service ens …
0
votes
6answers
370 views

[java thread safety] Object visibility across threads

Hi, I have a general doubt regarding publishing data and data changes across threads. Consider for example the following class. public class DataRace { static int a = 0; …