Tagged Questions

Java package which contains utility classes commonly useful in concurrent programming. This package includes a few small standardized extensible frameworks, as well as some classes that provide useful functionality and are otherwise tedious or difficult to implement.

learn more… | top users | synonyms

12
votes
2answers
153 views

Thread-safe implementation of max

I need to implement global object collecting statistics for web server. I have Statistics singleton, which has method addSample(long sample), which subsequently call updateMax. This has to be ...
11
votes
4answers
172 views

Strange code in java.util.concurrent.LinkedBlockingQueue

All! I found strange code in LinkedBlockingQueue: private E dequeue() { // assert takeLock.isHeldByCurrentThread(); Node<E> h = head; Node<E> first = h.next; ...
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
1answer
216 views

Why aren't Java.util.concurrent.TimeUnit types greater than SECONDS available in Android?

I miss MINUTES, HOURS, DAYS, which exist in documentaion since API level 1 (I use 7th or 2.1 version for the application). I have read this question, where this miss was also pointed out (though, it ...
6
votes
3answers
613 views

ConcurrentLinkedQueue$Node remains in heap after remove()

I have a multithreaded app writing and reading a ConcurrentLinkedQueue, which is conceptually used to back entries in a list/table. I originally used a ConcurrentHashMap for this, which worked well. ...
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) { ...
5
votes
3answers
2k views

Implementation of BlockingQueue: What are the differences between SynchronousQueue and LinkedBlockingQueue

I see these implementation of BlockingQueue and can't understand the differences between them. My conclusion so far: I won't ever need SynchronousQueue LinkedBlockingQueue ensures FIFO, ...
5
votes
2answers
1k views

is there java.concurrent.util (or equivalent) for WeakHashMap?

Can the following piece of code be rewritten w/o using Collections.synchronizedMap() yet maintaining correctness at concurrency? `Collections.synchronizedMap(new WeakHashMap<Class, ...
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
90 views

why CountDownLatch.getCount() returns a long but not an int?

I looked into the code, everything is int -- the parameter passed to CountDownLatch constructor is int, the variable in Sync is int, the return type of Sync.getCount() is int. But ...
4
votes
4answers
135 views

Does a HashMap with a getAndWait() method exist? E.g. a BlockingConcurrentHashMap implementation?

Many threads may populate a HashMap, in some cases I need to wait (block) until an object exists in the HashMap, such as: BlockingConcurrentHashMap map = new BlockingConcurrentHashMap(); Object x = ...
4
votes
5answers
502 views

Is there a Mutex in Java?

Is there a Mutex object in java or a way to create one? I am asking because a Semaphore object initialized with 1 permit does not help me. Think of this case: try { semaphore.acquire(); //do ...
4
votes
2answers
343 views

Single threading a task without queuing further requests

I have a requirement for a task to be executed asynchronously while discarding any further requests until the task is finished. Synchronizing the method just queues up the tasks and doesn't skip. I ...
4
votes
1answer
491 views

Guava MapMaker().weakKeys().makeMap() vs WeakHashMap

We have a Scala server that is getting a node tree using Protocol Buffers over a socket and we need to attach additional data to each node. In a single threaded context and when both the node tree ...
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 ...
4
votes
1answer
431 views

ScheduledThreadPoolExecutor executing a wrong time because of CPU time discrepancy

I'm scheduling a task using a ScheduledThreadPoolExecutor object. I use the following method: public ScheduledFuture<?> schedule(Runnable command, long delay,TimeUnit unit) and set the ...
4
votes
4answers
1k views

Long primitive or AtomicLong for a counter?

I have a need for a counter of type long with the following requirements/facts: Incrementing the counter should take as little time as possible. The counter will only be written to by one thread. ...
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
1answer
113 views

Looking for an unbounded, queue-based, concurrent implementation of java.util.Set

I'm looking for an implementation of java.util.Set with the following features: Should be concurrent by no means of synchronized locking; So it's obvious that I don't want to use ...
3
votes
2answers
303 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
2answers
225 views

How do I get an AtomicReferenceFieldUpdater from a scala companion object?

If I have a linked node in some collection structure I don't really want its next link to be an AtomicReference (I need atomic CAS update) so I declare it as: @volatile var next: Node[A] = _n and ...
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
931 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 ...
3
votes
3answers
1k views

Lock a file while writing it on the disk

I have two independant threads F1 and F2 (to be precise, two instances of java.util.concurrent.FutureTask) that are running in parallel. F1 do some processing, and then copy the result in a XML file. ...
2
votes
3answers
41 views

ConcurrentLinkedQueue with wait() and notify()

I am not well-versed in Multi-Threading. I am trying to take screenshot repeatedly by one producer thread, which adds the BufferedImage object to ConcurrentLinkedQueue and a Consumer Thread will poll ...
2
votes
2answers
99 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
1answer
61 views

Delay notification for lock acquisition in Java

We have a use case where we need to acquire a lock and send a notification if acquiring the lock takes more than 5 mins. We should still be waiting for the lock forever. We are using re-entrant locks ...
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 ...
2
votes
2answers
58 views

Scheduling a Callable at a fixed rate

I have a task that I want to run at a fixed rate. However I also need the result of the task after each execution. Here is what I tried: The task class ScheduledWork implements ...
2
votes
2answers
84 views

Why is there no “awaitTermination(Date deadline)” method?

I have a list of tasks submitted to an ExecutorService. But I need to shutdown the ExecutorService before a deadline of 2:30AM, even if the tasks are not finished. How can I achieve this? I checked ...
2
votes
4answers
112 views

Memory consistancy in java.util.concurrent

From Memory Consistancy Property, we know that: "Actions in a thread prior to placing an object into any concurrent collection happen-before actions subsequent to the access or removal of that element ...
1
vote
5answers
81 views

block threads on certain conditions in java

Maybe this is a really dumb question, but please hear me out. I have a use case where I get many concurrent requests to do something for a particular input date. If there are two concurrent requests ...
1
vote
2answers
293 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
3answers
76 views

Polling Multiple Threads and CPU Usage

I have a call that receives a list of jobs from the user say user posted 3 jobs A, B and C, they all start execution in their own threads AT,BT and CT, then I start monitoring these 3 threads, if one ...
1
vote
1answer
92 views

Manipulate Thread Implementation in JVM

Recently, I've been working on the deployment of concurrent objects onto multicore. In a sample, I use BlockingQueue.take() method whose specification mentions that it is blocking. It means that the ...
1
vote
1answer
46 views

Why the “next” field in ConcurrentHashMap$HashEntry is final

I'm reading reading the source code of java.util.ConcurrentHashMap and find that the next field in ConcurrentHashMap$HashEntry is final. There are two operations that is possible to modify the value ...
1
vote
4answers
290 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
287 views

how do you “ignore” java.util.concurrent.Future objects?

Can you spot the bug? This will throw an java.lang.OutOfMemoryError. import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; public class TestTheads { public static ...
1
vote
2answers
274 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
454 views

is there any Concurrent LinkedHashSet in JDK6.0 or other libraries?

my code throw follow exception: java.util.ConcurrentModificationException at java.util.LinkedList$ListItr.checkForComodification(LinkedList.java:761) at ...
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
1answer
182 views

Android & java.util.concurrent.ConcurrentLinkedQueue

I want to use ConcurrentLinkedQueue in an android application, have written the code, but now I'm getting an error when the project builds: Conversion to Dalvik format failed with error 2 I'm using ...
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
2answers
52 views

Get result of scheduled task

I am trying to learn the java concurrency API, and for my exercise i want to schedule a job to run periodically every X seconds. The job will compute a random number. I want to get the result of the ...
0
votes
1answer
44 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
4answers
100 views

How to Block and wait using AtomicBoolean

I am looking for a way of pausing a Thread. I started with affectively using a boolean flag (called 'paused'), and wrapping a check with a while loop (pause). Within the while loop there’s a ...
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. ...

1 2