|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ResultScanner | |
---|---|
org.apache.hadoop.hbase.client | Provides HBase Client |
org.apache.hadoop.hbase.client.tableindexed | This package provides support for secondary indexing by maintaining a separate, "index", table for each index. |
org.apache.hadoop.hbase.client.transactional | This package provides support for atomic transactions. |
org.apache.hadoop.hbase.rest | Provides an HBase REST service. |
org.apache.hadoop.hbase.stargate.client | |
org.apache.hadoop.hbase.thrift | Provides an HBase Thrift service. |
Uses of ResultScanner in org.apache.hadoop.hbase.client |
---|
Classes in org.apache.hadoop.hbase.client that implement ResultScanner | |
---|---|
protected class |
HTable.ClientScanner
Implements the scanner interface for the HBase client. |
Methods in org.apache.hadoop.hbase.client that return ResultScanner | |
---|---|
ResultScanner |
HTable.getScanner(byte[] family)
Gets a scanner on the current table for the given family. |
ResultScanner |
HTable.getScanner(byte[] family,
byte[] qualifier)
Gets a scanner on the current table for the given family and qualifier. |
ResultScanner |
HTable.getScanner(Scan scan)
Returns a scanner on the current table as specified by the Scan
object. |
Uses of ResultScanner in org.apache.hadoop.hbase.client.tableindexed |
---|
Methods in org.apache.hadoop.hbase.client.tableindexed that return ResultScanner | |
---|---|
ResultScanner |
IndexedTable.getIndexedScanner(String indexId,
byte[] indexStartRow,
byte[] indexStopRow,
byte[][] indexColumns,
Filter indexFilter,
byte[][] baseColumns)
Open up an indexed scanner. |
Uses of ResultScanner in org.apache.hadoop.hbase.client.transactional |
---|
Classes in org.apache.hadoop.hbase.client.transactional that implement ResultScanner | |
---|---|
protected class |
TransactionalTable.TransactionalClientScanner
|
Methods in org.apache.hadoop.hbase.client.transactional that return ResultScanner | |
---|---|
ResultScanner |
TransactionalTable.getScanner(TransactionState transactionState,
Scan scan)
|
Uses of ResultScanner in org.apache.hadoop.hbase.rest |
---|
Fields in org.apache.hadoop.hbase.rest with type parameters of type ResultScanner | |
---|---|
protected static Map<Integer,ResultScanner> |
ScannerModel.ScannerMaster.scannerMap
|
Methods in org.apache.hadoop.hbase.rest that return ResultScanner | |
---|---|
ResultScanner |
ScannerModel.ScannerMaster.getScanner(Integer id)
|
ResultScanner |
ScannerModel.ScannerMaster.removeScanner(Integer id)
|
Methods in org.apache.hadoop.hbase.rest with parameters of type ResultScanner | |
---|---|
Integer |
ScannerModel.ScannerMaster.addScanner(ResultScanner scanner)
|
Uses of ResultScanner in org.apache.hadoop.hbase.stargate.client |
---|
Methods in org.apache.hadoop.hbase.stargate.client that return ResultScanner | |
---|---|
ResultScanner |
RemoteHTable.getScanner(byte[] family)
|
ResultScanner |
RemoteHTable.getScanner(byte[] family,
byte[] qualifier)
|
ResultScanner |
RemoteHTable.getScanner(Scan scan)
|
Uses of ResultScanner in org.apache.hadoop.hbase.thrift |
---|
Fields in org.apache.hadoop.hbase.thrift with type parameters of type ResultScanner | |
---|---|
protected HashMap<Integer,ResultScanner> |
ThriftServer.HBaseHandler.scannerMap
|
Methods in org.apache.hadoop.hbase.thrift that return ResultScanner | |
---|---|
protected ResultScanner |
ThriftServer.HBaseHandler.getScanner(int id)
Returns the scanner associated with the specified ID. |
protected ResultScanner |
ThriftServer.HBaseHandler.removeScanner(int id)
Removes the scanner associated with the specified ID from the internal id->scanner hash-map. |
Methods in org.apache.hadoop.hbase.thrift with parameters of type ResultScanner | |
---|---|
protected int |
ThriftServer.HBaseHandler.addScanner(ResultScanner scanner)
Assigns a unique ID to the scanner and adds the mapping to an internal hash-map. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |