116117118119120121122123
} try { return _arrayFile.getBasicIO().readLong(getPosition(index)); } catch (IOException e) { throw new OperationAbortedException("Read aborted at index " + index, e); } }
152153154155156157158159
@Override public long[] getInternalArray() { try { return _arrayFile.loadLongArray(); } catch (IOException e) { throw new OperationAbortedException(e); } }