org.apache.hadoop.hbase.client
Interface MetaScanner.MetaScannerVisitor

All Superinterfaces:
Closeable
All Known Implementing Classes:
MetaScanner.DefaultMetaScannerVisitor, MetaScanner.MetaScannerVisitorBase, MetaScanner.TableMetaScannerVisitor
Enclosing class:
MetaScanner

public static interface MetaScanner.MetaScannerVisitor
extends Closeable

Visitor class called to process each row of the hbase:meta table


Method Summary
 boolean processRow(Result rowResult)
          Visitor method that accepts a RowResult and the meta region location.
 
Methods inherited from interface java.io.Closeable
close
 

Method Detail

processRow

boolean processRow(Result rowResult)
                   throws IOException
Visitor method that accepts a RowResult and the meta region location. Implementations can return false to stop the region's loop if it becomes unnecessary for some reason.

Parameters:
rowResult - result
Returns:
A boolean to know if it should continue to loop in the region
Throws:
IOException - e


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