HBASE-12724 Upgrade the interface audience of RegionScanner from Private to LimitedPrivate
This commit is contained in:
parent
dceaa2589f
commit
9a7adafcdb
|
@ -22,13 +22,16 @@ import java.io.IOException;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.apache.hadoop.hbase.classification.InterfaceAudience;
|
import org.apache.hadoop.hbase.classification.InterfaceAudience;
|
||||||
|
import org.apache.hadoop.hbase.classification.InterfaceStability;
|
||||||
import org.apache.hadoop.hbase.Cell;
|
import org.apache.hadoop.hbase.Cell;
|
||||||
|
import org.apache.hadoop.hbase.HBaseInterfaceAudience;
|
||||||
import org.apache.hadoop.hbase.HRegionInfo;
|
import org.apache.hadoop.hbase.HRegionInfo;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* RegionScanner describes iterators over rows in an HRegion.
|
* RegionScanner describes iterators over rows in an HRegion.
|
||||||
*/
|
*/
|
||||||
@InterfaceAudience.Private
|
@InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.COPROC)
|
||||||
|
@InterfaceStability.Stable
|
||||||
public interface RegionScanner extends InternalScanner {
|
public interface RegionScanner extends InternalScanner {
|
||||||
/**
|
/**
|
||||||
* @return The RegionInfo for this scanner.
|
* @return The RegionInfo for this scanner.
|
||||||
|
|
Loading…
Reference in New Issue