HBASE-7967 implement compactor for stripe compactions - ADDENDUM - fix javadoc warnings

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1536881 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
sershe 2013-10-29 20:27:48 +00:00
parent 53bb2f6be7
commit ff23790dd3
1 changed files with 4 additions and 2 deletions

View File

@ -72,7 +72,7 @@ public abstract class Compactor {
} }
/** /**
* TODO: Replace this with {@link CellOutputStream} when StoreFile.Writer uses cells. * TODO: Replace this with CellOutputStream when StoreFile.Writer uses cells.
*/ */
public interface CellSink { public interface CellSink {
void append(KeyValue kv) throws IOException; void append(KeyValue kv) throws IOException;
@ -262,10 +262,12 @@ public abstract class Compactor {
} }
/** /**
* @param store The store.
* @param scanners Store file scanners. * @param scanners Store file scanners.
* @param scanType Scan type.
* @param smallestReadPoint Smallest MVCC read point. * @param smallestReadPoint Smallest MVCC read point.
* @param earliestPutTs Earliest put across all files. * @param earliestPutTs Earliest put across all files.
* @param dropDeletesFromRow Drop deletes starting with this row, inclusive. Can be null.
* @param dropDeletesToRow Drop deletes ending with this row, exclusive. Can be null.
* @return A compaction scanner. * @return A compaction scanner.
*/ */
protected InternalScanner createScanner(Store store, List<StoreFileScanner> scanners, protected InternalScanner createScanner(Store store, List<StoreFileScanner> scanners,