Uses of Interface
org.apache.hadoop.hbase.client.ResultScanner

Packages that use ResultScanner
org.apache.hadoop.hbase.avro Provides an HBase Avro service. 
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.rest.client   
org.apache.hadoop.hbase.thrift Provides an HBase Thrift service. 
 

Uses of ResultScanner in org.apache.hadoop.hbase.avro
 

Fields in org.apache.hadoop.hbase.avro with type parameters of type ResultScanner
protected  HashMap<Integer,ResultScanner> AvroServer.HBaseImpl.scannerMap
           
 

Methods in org.apache.hadoop.hbase.avro that return ResultScanner
protected  ResultScanner AvroServer.HBaseImpl.getScanner(int id)
          Returns the scanner associated with the specified ID.
protected  ResultScanner AvroServer.HBaseImpl.removeScanner(int id)
          Removes the scanner associated with the specified ID from the internal id->scanner hash-map.
 

Methods in org.apache.hadoop.hbase.avro with parameters of type ResultScanner
protected  int AvroServer.HBaseImpl.addScanner(ResultScanner scanner)
          Assigns a unique ID to the scanner and adds the mapping to an internal hash-map.
 

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)
           
 ResultScanner HTableInterface.getScanner(byte[] family)
          Gets a scanner on the current table for the given family.
 ResultScanner HTable.getScanner(byte[] family, byte[] qualifier)
           
 ResultScanner HTableInterface.getScanner(byte[] family, byte[] qualifier)
          Gets a scanner on the current table for the given family and qualifier.
 ResultScanner HTable.getScanner(Scan scan)
           
 ResultScanner HTableInterface.getScanner(Scan scan)
          Returns a scanner on the current table as specified by the Scan object.
 

Uses of ResultScanner in org.apache.hadoop.hbase.rest.client
 

Methods in org.apache.hadoop.hbase.rest.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.
 



Copyright © 2011 The Apache Software Foundation. All Rights Reserved.