Uses of Interface
org.apache.hadoop.hbase.regionserver.InternalScanner

Packages that use InternalScanner
org.apache.hadoop.hbase.coprocessor Table of Contents 
org.apache.hadoop.hbase.regionserver   
 

Uses of InternalScanner in org.apache.hadoop.hbase.coprocessor
 

Methods in org.apache.hadoop.hbase.coprocessor that return InternalScanner
 InternalScanner RegionObserver.preCompact(ObserverContext<RegionCoprocessorEnvironment> c, Store store, InternalScanner scanner)
          Called prior to writing the StoreFiles selected for compaction into a new StoreFile.
 InternalScanner BaseRegionObserver.preCompact(ObserverContext<RegionCoprocessorEnvironment> e, Store store, InternalScanner scanner)
           
 

Methods in org.apache.hadoop.hbase.coprocessor with parameters of type InternalScanner
 void RegionObserver.postScannerClose(ObserverContext<RegionCoprocessorEnvironment> c, InternalScanner s)
          Called after the client closes a scanner.
 void BaseRegionObserver.postScannerClose(ObserverContext<RegionCoprocessorEnvironment> e, InternalScanner s)
           
 boolean RegionObserver.postScannerNext(ObserverContext<RegionCoprocessorEnvironment> c, InternalScanner s, List<Result> result, int limit, boolean hasNext)
          Called after the client asks for the next row on a scanner.
 boolean BaseRegionObserver.postScannerNext(ObserverContext<RegionCoprocessorEnvironment> e, InternalScanner s, List<Result> results, int limit, boolean hasMore)
           
 InternalScanner RegionObserver.preCompact(ObserverContext<RegionCoprocessorEnvironment> c, Store store, InternalScanner scanner)
          Called prior to writing the StoreFiles selected for compaction into a new StoreFile.
 InternalScanner BaseRegionObserver.preCompact(ObserverContext<RegionCoprocessorEnvironment> e, Store store, InternalScanner scanner)
           
 void RegionObserver.preScannerClose(ObserverContext<RegionCoprocessorEnvironment> c, InternalScanner s)
          Called before the client closes a scanner.
 void BaseRegionObserver.preScannerClose(ObserverContext<RegionCoprocessorEnvironment> e, InternalScanner s)
           
 boolean RegionObserver.preScannerNext(ObserverContext<RegionCoprocessorEnvironment> c, InternalScanner s, List<Result> result, int limit, boolean hasNext)
          Called before the client asks for the next row on a scanner.
 boolean BaseRegionObserver.preScannerNext(ObserverContext<RegionCoprocessorEnvironment> e, InternalScanner s, List<Result> results, int limit, boolean hasMore)
           
 

Uses of InternalScanner in org.apache.hadoop.hbase.regionserver
 

Subinterfaces of InternalScanner in org.apache.hadoop.hbase.regionserver
 interface RegionScanner
          RegionScanner describes iterators over rows in an HRegion.
 

Classes in org.apache.hadoop.hbase.regionserver that implement InternalScanner
 class KeyValueHeap
          Implements a heap merge across any number of KeyValueScanners.
 

Methods in org.apache.hadoop.hbase.regionserver that return InternalScanner
 InternalScanner RegionCoprocessorHost.preCompact(Store store, InternalScanner scanner)
          Called prior to rewriting the store files selected for compaction
 

Methods in org.apache.hadoop.hbase.regionserver with parameters of type InternalScanner
 void RegionCoprocessorHost.postScannerClose(InternalScanner s)
           
 boolean RegionCoprocessorHost.postScannerNext(InternalScanner s, List<Result> results, int limit, boolean hasMore)
           
 InternalScanner RegionCoprocessorHost.preCompact(Store store, InternalScanner scanner)
          Called prior to rewriting the store files selected for compaction
 boolean RegionCoprocessorHost.preScannerClose(InternalScanner s)
           
 Boolean RegionCoprocessorHost.preScannerNext(InternalScanner s, List<Result> results, int limit)
           
 



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