Interface ResultProcessor<T>

  • Type Parameters:
    T - The type that the ResultProcessor will return.

    public interface ResultProcessor<T>
    Used to define a class which is capable of processing entries returned from an HBase scan operation.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      T scan​(org.apache.hadoop.hbase.client.ResultScanner scanner)
      Used to process results from an HBase ResultScanner (aka iterator of results).
    • Method Detail

      • scan

        T scan​(org.apache.hadoop.hbase.client.ResultScanner scanner)
        Used to process results from an HBase ResultScanner (aka iterator of results).
        Parameters:
        scanner - The iterable results from an HBase scan.
        Returns:
        The result from the ResultProcessor.