use of com.tvd12.calabash.local.impl.AtomicLongImpl in project calabash by youngmonkeys.
the class SimpleAtomicLongManager method newAtomicLong.
protected IAtomicLong newAtomicLong(String name) {
synchronized (atomicLongs) {
IAtomicLong atomicLong = atomicLongs.get(name);
if (atomicLong == null) {
atomicLong = new AtomicLongImpl(name, map);
atomicLongs.put(name, atomicLong);
}
return atomicLong;
}
}
use of com.tvd12.calabash.local.impl.AtomicLongImpl in project calabash by youngmonkeys.
the class SimpleAtomicLongManager method newAtomicLong.
protected IAtomicLong newAtomicLong(String name) {
synchronized (atomicLongs) {
IAtomicLong atomicLong = atomicLongs.get(name);
if (atomicLong == null) {
atomicLong = new AtomicLongImpl(name, map);
atomicLongs.put(name, atomicLong);
}
return atomicLong;
}
}
Aggregations