org.cloudgraph.rocksdb.client.RocksDBDel 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.Delete;
public class RocksDBDel extends RocksDBRowMutation implements Delete {
public RocksDBDel(byte[] rowKey) {
super(rowKey, MutationType.DEL);
}
@Override
public void addColumns(byte[] fam, byte[] qual) {
// FIXME: we are only able to delete an entire row at present
// not to even distinguish particular columns
}
@Override
public void setAttribute(String name, byte[] value) {
throw new IllegalStateException("not implemented");
}
@Override
public byte[] getAttribute(String name) {
throw new IllegalStateException("not implemented");
}
@Override
public NavigableMap> getFamilyCellMap() {
throw new IllegalStateException("not implemented");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy