org.cloudgraph.rocksdb.client.RocksDBPut Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudgraph-rocksdb Show documentation
Show all versions of cloudgraph-rocksdb Show documentation
CloudGraph(tm) is a suite of Service Data Object (SDO) 2.1 services designed for relational and big-table style "cloud" databases, such as HBase and others.
The newest version!
package org.cloudgraph.rocksdb.client;
import java.util.List;
import java.util.NavigableMap;
import org.cloudgraph.core.client.Cell;
import org.cloudgraph.core.client.Put;
import org.plasma.sdo.DataType;
public class RocksDBPut extends RocksDBRowMutation implements Put {
public RocksDBPut(byte[] rowKey) {
super(rowKey, MutationType.PUT);
}
@Override
public void addColumn(byte[] fam, byte[] qual, DataType valueDataType, byte[] value) {
super.addColumn(fam, qual, valueDataType, value);
}
@Override
public void addColumn(byte[] fam, byte[] qual, long ts, byte[] value) {
throw new RuntimeException("not implemented");
}
@Override
public void setAttribute(String name, byte[] value) {
throw new RuntimeException("not implemented");
}
@Override
public byte[] getAttribute(String name) {
throw new RuntimeException("not implemented");
}
@Override
public NavigableMap> getFamilyCellMap() {
throw new RuntimeException("not implemented");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy