HBASE-16048 Tag InternalScanner with LimitedPrivate(HBaseInterfaceAudience.COPROC)

This commit is contained in:
tedyu 2016-06-17 07:27:52 -07:00
parent 3abd52bdc6
commit 5147fb12a5
1 changed files with 4 additions and 1 deletions

View File

@ -23,7 +23,9 @@ import java.io.IOException;
import java.util.List; import java.util.List;
import org.apache.hadoop.hbase.Cell; import org.apache.hadoop.hbase.Cell;
import org.apache.hadoop.hbase.HBaseInterfaceAudience;
import org.apache.hadoop.hbase.classification.InterfaceAudience; import org.apache.hadoop.hbase.classification.InterfaceAudience;
import org.apache.hadoop.hbase.classification.InterfaceStability;
/** /**
* Internal scanners differ from client-side scanners in that they operate on * Internal scanners differ from client-side scanners in that they operate on
@ -39,7 +41,8 @@ import org.apache.hadoop.hbase.classification.InterfaceAudience;
* all the family members, as they may have been last updated at different * all the family members, as they may have been last updated at different
* times. * times.
*/ */
@InterfaceAudience.Private @InterfaceAudience.LimitedPrivate(HBaseInterfaceAudience.COPROC)
@InterfaceStability.Evolving
public interface InternalScanner extends Closeable { public interface InternalScanner extends Closeable {
/** /**
* Grab the next row's worth of values. * Grab the next row's worth of values.