return out;
}
public boolean compareAndPut(RefKey refKey, RefData oldData, RefData newData)
throws DhtException, TimeoutException {
RepositoryKey repo = refKey.getRepositoryKey();
return table.compareAndSet( //
repo.asBytes(), //
colRef.append(refKey.asBytes()), //
oldData != RefDataUtil.NONE ? oldData.toByteArray() : null, //
newData.toByteArray());
}