io.sirix.node.DeweyIDNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sirix-core Show documentation
Show all versions of sirix-core Show documentation
SirixDB is a hybrid on-disk and in-memory document oriented, versioned database system. It has a lightweight buffer manager, stores everything in a huge persistent and durable tree and allows efficient reconstruction of every revision. Furthermore, SirixDB implements change tracking, diffing and supports time travel queries.
package io.sirix.node;
import io.sirix.node.interfaces.DataRecord;
import io.sirix.node.interfaces.RecordSerializer;
public final class DeweyIDNode implements DataRecord {
private final long nodeKey;
private final SirixDeweyID deweyId;
public DeweyIDNode(long nodeKey, SirixDeweyID deweyId) {
this.nodeKey = nodeKey;
this.deweyId = deweyId;
}
@Override
public long getNodeKey() {
return nodeKey;
}
@Override
public SirixDeweyID getDeweyID() {
return deweyId;
}
@Override
public RecordSerializer getKind() {
return NodeKind.DEWEY_ID_NODE;
}
@Override
public byte[] getDeweyIDAsBytes() {
return deweyId.toBytes();
}
@Override
public int getLastModifiedRevisionNumber() {
throw new UnsupportedOperationException();
}
@Override
public int getPreviousRevisionNumber() {
throw new UnsupportedOperationException();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy