Package | Description |
---|---|
org.hbase.async |
Modifier and Type | Method and Description |
---|---|
static KeyValue |
KeyValue.fromBuffer(org.jboss.netty.buffer.ChannelBuffer buf,
KeyValue prev)
De-serializes
KeyValue from a buffer (HBase 0.94 and before). |
Modifier and Type | Method and Description |
---|---|
com.stumbleupon.async.Deferred<ArrayList<KeyValue>> |
HBaseClient.get(GetRequest request)
Retrieves data from HBase.
|
ArrayList<KeyValue> |
GetResultOrException.getCells() |
com.stumbleupon.async.Deferred<ArrayList<ArrayList<KeyValue>>> |
Scanner.nextRows()
Scans a number of rows.
|
com.stumbleupon.async.Deferred<ArrayList<ArrayList<KeyValue>>> |
Scanner.nextRows(int nrows)
Scans a number of rows.
|
Modifier and Type | Method and Description |
---|---|
int |
KeyValue.compareTo(KeyValue other) |
static KeyValue |
KeyValue.fromBuffer(org.jboss.netty.buffer.ChannelBuffer buf,
KeyValue prev)
De-serializes
KeyValue from a buffer (HBase 0.94 and before). |
Constructor and Description |
---|
AppendRequest(byte[] table,
KeyValue kv)
Constructor from a
KeyValue . |
AppendRequest(byte[] table,
KeyValue kv,
RowLock lock)
Constructor from a
KeyValue with an explicit row lock. |
DeleteRequest(byte[] table,
KeyValue kv)
Constructor to delete a specific cell.
|
DeleteRequest(byte[] table,
KeyValue kv,
RowLock lock)
Constructor to delete a specific cell with an explicit row lock.
|
PutRequest(byte[] table,
KeyValue kv)
Constructor from a
KeyValue . |
PutRequest(byte[] table,
KeyValue kv,
RowLock lock)
Constructor from a
KeyValue with an explicit row lock. |
Constructor and Description |
---|
GetResultOrException(ArrayList<KeyValue> cells) |
Copyright © 2010-2017, The Async HBase Authors