Package | Description |
---|---|
org.hbase.async |
Modifier and Type | Method and Description |
---|---|
GetRequest |
GetRequest.family(byte[] family)
Specifies a particular column family to get.
|
GetRequest |
GetRequest.family(String family)
Specifies a particular column family to get.
|
GetRequest |
GetRequest.maxVersions(int versions)
Sets the maximum number of versions to return for each cell read.
|
GetRequest |
GetRequest.qualifier(byte[] qualifier)
Specifies a particular column qualifier to get.
|
GetRequest |
GetRequest.qualifier(String qualifier)
Specifies a particular column qualifier to get.
|
GetRequest |
GetRequest.qualifiers(byte[][] qualifiers)
Specifies a particular set of column qualifiers to get.
|
GetRequest |
GetRequest.setFilter(ScanFilter filter)
Specifies the filter to apply to cells in this row.
|
GetRequest |
GetRequest.setMaxTimestamp(long timestamp)
Sets the maximum timestamp to scan (exclusive).
|
GetRequest |
GetRequest.setMinTimestamp(long timestamp)
Sets the minimum timestamp to scan (inclusive).
|
GetRequest |
GetRequest.setTimeRange(long min_timestamp,
long max_timestamp)
Sets the time range to scan.
|
GetRequest |
GetRequest.withRowLock(RowLock lock)
Specifies an explicit row lock to use with this request.
|
Modifier and Type | Method and Description |
---|---|
com.stumbleupon.async.Deferred<ArrayList<KeyValue>> |
HBaseClient.get(GetRequest request)
Retrieves data from HBase.
|
Modifier and Type | Method and Description |
---|---|
com.stumbleupon.async.Deferred<List<GetResultOrException>> |
HBaseClient.get(List<GetRequest> requests)
Method to issue multiple get requests to HBase in a batch.
|
Copyright © 2010-2017, The Async HBase Authors