Some time ago I started to investigate java.util.concurrent
package. And my question is about AtomicStampedReference
class. The class has method
public V get(int[] stampHolder) {
...
}
which gets reference and stamp atomically (please, correct me if I'm wrong).
Is there some special reasons why parameter for the method is array? Documentation says nothing about it.