JSR 166: Concurrency Utilities (Java)
0
votes
1answer
135 views
How can I add files to the bootclasspath in maven correctly?
I'm using some JSR166 classes with Java 1.6, some of which are under java.util.concurrent. I am on OSX, though I expect this to ultimately run on Linux.
If I set this environment variable I can run ...
2
votes
1answer
174 views
Why akka.jsr166y.ForkJoinPool is deprecated in Akka 2.0.2?
Is it mean that it will move to Scala 2.10 or jsr166y will be released separately? ...or something else?
20
votes
3answers
956 views
AtomicReferenceFieldUpdater - methods set, get, compareAndSet semantics
From the Java AtomicReferenceFieldUpdater docs:
Note that the guarantees of the compareAndSet method in this class are
weaker than in other atomic classes. Because this class cannot ensure
...
9
votes
1answer
1k views
Difference between BlockingQueue and TransferQueue
I am a little bit confused as to what the difference is between BlockingQueue/LinkedBlockingQueue and the new TransferQueue/LinkedTransferQueue types from jsr166y and java 7
2
votes
2answers
153 views
Exchanger appears to not exchange()
I have a pretty simple problem, in wich I try to exchange an object ( in this case an array of int) between two task : Producer and Consumer. The Producer class produces an array of int and than it ...
2
votes
2answers
575 views
Memory visibility in Fork-join
Brian Goetz's wrote a nice article on fork-join at http://www.ibm.com/developerworks/java/library/j-jtp03048.html. In it, he lists a merge sort algorithm using the fork-join mechanism, in which he ...
12
votes
2answers
1k views
Why can't I shutdown my own ExecutorService under a SecurityManager?
Under the default security manager, if I create an ExecutorService (ThreadPoolExecutor in this case), I cannot shut it down, shutdown() just calls checkPermission("modifyThread") and thus immediately ...