Tagged Questions

18
votes
3answers
431 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 ...
5
votes
1answer
197 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
84 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 ...