Tagged Questions

9
votes
3answers
1k views

Why is Java Future.get(timeout) Not Reliable?

Future.get(timeout) does not reliably throw the TimeoutException after the given timeout. Is this normal behavior or can I do something to make this more reliable? This test fails on my machine. ...
8
votes
6answers
2k views

java.util.concurrent vs. Boost Threads library

How does the Boost Thread libraries compare against the java.util.concurrent libraries? Performance is critical and so I would prefer to stay with C++ (although Java is a lot faster these days). ...
6
votes
4answers
8k views

java.util.ConcurrentModificationException in Non Multithreaded Program

Hey SO Guru's im having one heck of a job with this code public void kill(double GrowthRate, int Death) { int before = population.size(); for (PopulationMember p : population) { ...
4
votes
5answers
96 views

What is ReentrantLock#tryLock(long,TimeUnit) doing when it tries to aquire the lock?

What is the ReentrantLock#tryLock(long,TimeUnit) implementation doing when it tries to aquire a lock ? Assume Thread A acually owns the Lock of myLock, and Thread B call myLock.tryLock(10,SECONDS), is ...
4
votes
3answers
1k views

Thread safe Hash Map?

I am writing an application which will return a HashMap to user. User will get reference to this MAP. On the backend, I will be running some threads which will update the Map. What I have done so ...
3
votes
2answers
95 views

Is java.util.concurrent.Future threadsafe?

I am trying to find documentation indicating if java.util.concurrent.Future is/is not threadsafe. Eg can I safely give the same instance of Future to multiple threads, which will all call ...
3
votes
2answers
302 views

ExecutorService awaitTermination gets stuck

I made a fixed size thread pool with Executors.newFixedThreadPool(2), and I executed 10 Runnable objects. I set breakpoints and traced through the execution. However, ...
3
votes
4answers
544 views

Are there any drawbacks with ConcurrentHashMap?

I need a HashMap that is accessible from multiple threads. There are two simple options, using a normal HashMap and synchronizing on it or using a ConcurrentHashMap. Since ConcurrentHashMap does not ...
3
votes
5answers
929 views

Java ThreadPool usage

I'm trying to write a multithreaded web crawler. My main entry class has the following code: ExecutorService exec = Executors.newFixedThreadPool(numberOfCrawlers); while(true){ URL url = ...
3
votes
4answers
3k views

How to give name to a callable Thread?

I am executing a Callable Object using ExecutorService thread pool. I want to give a name to this thread. To be more specific, in older version I did this - Thread thread = new Thread(runnable ...
2
votes
2answers
97 views

Difference between Executor and ExecutorCompletionservice in java

As the question title itself says what is the difference between Executors and ExecutorCompletionService classes in java? I am new to the Threading,so if any one can explain with a piece of code, ...
2
votes
2answers
71 views

Are all side-effects of executor tasks visible after invokeAll?

If I submit some tasks to an Executor using invokeAll, am I guaranteed that the submitted thread sees all the side effects of the task executions, even if I don't call get() on each of the returned ...
1
vote
2answers
290 views

Thread.interrupt() and java.io.InterruptedIOException

I'm running Java 1.5 on Solaris 10. My program is a standalone java program, using java concurrency package and log4j-1.2.12.jar to log certain information. primary logic is as below ExecutorService ...
1
vote
4answers
286 views

Why does the iterator.hasNext not work with BlockingQueue?

I was trying to use the iterator methods on a BlockingQueue and discovered that hasNext() is non-blocking - i.e. it will not wait until more elements are added and will instead return false when there ...
1
vote
2answers
273 views

How does java.util.concurrent.Executor work?

How does java.util.concurrent.Executor create the "real" thread? Suppose I am implementing Executor or using any executor service (like ThreadPoolExecutor). How does JVM internally work?
1
vote
3answers
330 views

java.util.concurrent: Should I synchronize to avoid visiblity issues among threads?

I wonder if when using any of the java.util.concurrent classes I still need to synchronize access on the instance so to avoid visibility issues. In short the question is: When using an instance of ...
1
vote
3answers
187 views

How to learn about Threads, Especially in Java

I have always been kind of confused by threads, and my class right now makes heavy use of them. We are using java.util.concurrent but I don't even really get the basics. UpDownLatch, Futures, ...
0
votes
4answers
55 views

java reuse an executor

I work on a simulation system, where at each timestep, I have to simulate many models. I used a FixedThreadPool to speed up the calculation: ExecutorService executor = ...
0
votes
1answer
43 views

await method of class Condition not throwing InterruptedException

I have strange issue with an await method of Condition class in Java SE 6. The problem is that await method NOT always throws an exception while interrupting by another thread. In documentation it ...
0
votes
2answers
89 views

Strange behaviour of ExecutorService

I have 5000 similar Callable tasks to be executed in 8 threads of ExecutorService created by Executors.newFixedThreadPool(8). Each task goes to a database to retrieve a lot of data to process. ...
0
votes
2answers
51 views

Need to know object locking information

In java, I have created an object with global scope. At some point I am in a different thread and need to know whether the global object is currently locked by any threads. Krishna
0
votes
6answers
286 views

How to have one java thread wait for the result of another thread?

I frequently need to have a thread wait for the result of another thread. Seems like there should be some support for this in java.util.concurrent, but I can't find it. Exchanger is very close to ...
0
votes
2answers
722 views

ConcurrentModificationException Program in java HashMap

code: Map<Integer,DealCountUpdater> dealCountMap=new HashMap<Integer,DealCountUpdater>(); public void update(){ for(Map.Entry<Integer, DealCountUpdater> e:new ...