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

Packages that use org.apache.hadoop.hbase.client.ResultScanner
Package
Description
Provides HBase Client
HBase REST
Provides an HBase Thrift service.
  • Uses of org.apache.hadoop.hbase.client.ResultScanner in org.apache.hadoop.hbase.client

    Classes in org.apache.hadoop.hbase.client that implement org.apache.hadoop.hbase.client.ResultScanner in in
    Modifier and Type
    Class
    Description
    class 
    org.apache.hadoop.hbase.client.AbstractClientScanner
    Helper class for custom client scanners.
    class 
    org.apache.hadoop.hbase.client.ClientAsyncPrefetchScanner
    ClientAsyncPrefetchScanner implements async scanner behaviour.
    class 
    org.apache.hadoop.hbase.client.ClientScanner
    Implements the scanner interface for the HBase client.
    class 
    org.apache.hadoop.hbase.client.ClientSideRegionScanner
    A client scanner for a region opened for read-only on the client side.
    class 
    org.apache.hadoop.hbase.client.ClientSimpleScanner
    ClientSimpleScanner implements a sync scanner behaviour.
    class 
    org.apache.hadoop.hbase.client.ReversedClientScanner
    A reversed client scanner which support backward scanning
    class 
    org.apache.hadoop.hbase.client.TableSnapshotScanner
    A Scanner which performs a scan over snapshot files.
    Methods in org.apache.hadoop.hbase.client that return org.apache.hadoop.hbase.client.ResultScanner in in
    Modifier and Type
    Method
    Description
    default org.apache.hadoop.hbase.client.ResultScanner
    AsyncTable.getScanner(byte[] family)
    Gets a scanner on the current table for the given family.
    default org.apache.hadoop.hbase.client.ResultScanner
    AsyncTable.getScanner(byte[] family, byte[] qualifier)
    Gets a scanner on the current table for the given family and qualifier.
    org.apache.hadoop.hbase.client.ResultScanner
    AsyncTable.getScanner(org.apache.hadoop.hbase.client.Scan scan)
    Returns a scanner on the current table as specified by the Scan object.
    org.apache.hadoop.hbase.client.ResultScanner
    HTable.getScanner(byte[] family)
    The underlying HTable must not be closed.
    org.apache.hadoop.hbase.client.ResultScanner
    HTable.getScanner(byte[] family, byte[] qualifier)
    The underlying HTable must not be closed.
    org.apache.hadoop.hbase.client.ResultScanner
    HTable.getScanner(org.apache.hadoop.hbase.client.Scan scan)
    The underlying HTable must not be closed.
    default org.apache.hadoop.hbase.client.ResultScanner
    Table.getScanner(byte[] family)
    Gets a scanner on the current table for the given family.
    default org.apache.hadoop.hbase.client.ResultScanner
    Table.getScanner(byte[] family, byte[] qualifier)
    Gets a scanner on the current table for the given family and qualifier.
    default org.apache.hadoop.hbase.client.ResultScanner
    Table.getScanner(org.apache.hadoop.hbase.client.Scan scan)
    Returns a scanner on the current table as specified by the Scan object.
  • Uses of org.apache.hadoop.hbase.client.ResultScanner in org.apache.hadoop.hbase.rest

    Constructors in org.apache.hadoop.hbase.rest with parameters of type org.apache.hadoop.hbase.client.ResultScanner in in
    Modifier
    Constructor
    Description
    protected
    ProtobufStreamingOutput(org.apache.hadoop.hbase.client.ResultScanner scanner, String type, int limit, int fetchSize)
     
     
    TableScanResource(org.apache.hadoop.hbase.client.ResultScanner scanner, int userRequestedLimit)
     
  • Uses of org.apache.hadoop.hbase.client.ResultScanner in org.apache.hadoop.hbase.thrift

    Methods in org.apache.hadoop.hbase.thrift that return org.apache.hadoop.hbase.client.ResultScanner in in
    Modifier and Type
    Method
    Description
    org.apache.hadoop.hbase.client.ResultScanner
    ThriftHBaseServiceHandler.ResultScannerWrapper.getScanner()
     
    Methods in org.apache.hadoop.hbase.thrift with parameters of type org.apache.hadoop.hbase.client.ResultScanner in in
    Modifier and Type
    Method
    Description
    protected int
    ThriftHBaseServiceHandler.addScanner(org.apache.hadoop.hbase.client.ResultScanner scanner, boolean sortColumns)
    Assigns a unique ID to the scanner and adds the mapping to an internal hash-map.
    Constructors in org.apache.hadoop.hbase.thrift with parameters of type org.apache.hadoop.hbase.client.ResultScanner in in
    Modifier
    Constructor
    Description
     
    ResultScannerWrapper(org.apache.hadoop.hbase.client.ResultScanner resultScanner, boolean sortResultColumns)