Tagged Questions
The atomicreference tag has no wiki summary.
17
votes
3answers
407 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
2answers
219 views
Possible to create AtomicReference that can be swapped atomically?
Is there any way to implement a type of reference whose value can be exchanged with another atomically?
In Java we have AtomicReference which can be swapped with a local variable but not with ...
3
votes
2answers
31 views
2 threads performing myAtomicReference.compareAndSet(expected,new Date())
static boolean unsynchronizedSetter(Date expected){
Date newDate = new Date();
AtomicReference<Date> myAtomicReference = Lookup.getAtomicRef();
boolean myStatus = ...
2
votes
5answers
819 views
AtomicReference in Java - necessary for setting a reference in a thread-safe environment?
In Java there exists an AtomicReference class. Does this mean that setting a reference is NOT an atomic operation in and of itself?
e.g., is this not thread-safe (assuming that the value returned ...
1
vote
2answers
180 views
Race conditions with java references
The atomic integer, long, boolean etc are used to do any atomic updates to the respective types since there may be a race condition when we execute any manipulation on them, e.g ++. But what are the ...
0
votes
1answer
69 views
A thread-safe holder for arbitrary cloneable data
I have a class SomeMutableData with a public clone() method. I want to make sure, that no thread ever sees an inconsistent state (assuming the instances will be passed around using the holder only). I ...
0
votes
2answers
203 views
C# how to protect the field of an atomic class?
I'm trying to make an AtomicReference class in C# and I want to keep the field reference protected, but I also need to return the value in the get method:
class AtomicReference
{
private Object ...