Uses of Interface
org.apache.hadoop.hbase.CellScanner

Packages that use CellScanner
org.apache.hadoop.hbase   
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.codec   
org.apache.hadoop.hbase.codec.prefixtree.decode   
org.apache.hadoop.hbase.codec.prefixtree.scanner   
org.apache.hadoop.hbase.ipc Tools to help define network clients and servers. 
org.apache.hadoop.hbase.protobuf Holds classes generated from protobuf src/main/protobuf definition files. 
org.apache.hadoop.hbase.regionserver   
 

Uses of CellScanner in org.apache.hadoop.hbase
 

Methods in org.apache.hadoop.hbase that return CellScanner
 CellScanner CellScannable.cellScanner()
           
static CellScanner CellUtil.createCellScanner(Cell[] cellArray)
           
static CellScanner CellUtil.createCellScanner(Iterable<Cell> cellIterable)
           
static CellScanner CellUtil.createCellScanner(Iterator<Cell> cells)
           
static CellScanner CellUtil.createCellScanner(List<CellScannable> cellScannerables)
           
static CellScanner CellUtil.createCellScanner(NavigableMap<byte[],List<? extends Cell>> map)
          Flatten the map of cells out under the CellScanner
 

Uses of CellScanner in org.apache.hadoop.hbase.client
 

Methods in org.apache.hadoop.hbase.client that return CellScanner
 CellScanner Result.cellScanner()
           
 CellScanner Mutation.cellScanner()
           
 

Uses of CellScanner in org.apache.hadoop.hbase.codec
 

Subinterfaces of CellScanner in org.apache.hadoop.hbase.codec
static interface Codec.Decoder
          Implementations should implicitly clean up any resources allocated when the Decoder/CellScanner runs off the end of the cell block.
 

Classes in org.apache.hadoop.hbase.codec that implement CellScanner
 class BaseDecoder
           
 

Uses of CellScanner in org.apache.hadoop.hbase.codec.prefixtree.decode
 

Classes in org.apache.hadoop.hbase.codec.prefixtree.decode that implement CellScanner
 class PrefixTreeArrayReversibleScanner
          Methods for going backwards through a PrefixTree block.
 class PrefixTreeArrayScanner
          Extends PtCell and manipulates its protected fields.
 class PrefixTreeArraySearcher
          Searcher extends the capabilities of the Scanner + ReversibleScanner to add the ability to position itself on a requested Cell without scanning through cells before it.
 

Uses of CellScanner in org.apache.hadoop.hbase.codec.prefixtree.scanner
 

Subinterfaces of CellScanner in org.apache.hadoop.hbase.codec.prefixtree.scanner
 interface CellSearcher
          Methods for seeking to a random Cell inside a sorted collection of cells.
 interface ReversibleCellScanner
          An extension of CellScanner indicating the scanner supports iterating backwards through cells.
 

Uses of CellScanner in org.apache.hadoop.hbase.ipc
 

Fields in org.apache.hadoop.hbase.ipc declared as CellScanner
protected  CellScanner HBaseServer.Call.cellScanner
           
 

Methods in org.apache.hadoop.hbase.ipc that return CellScanner
 CellScanner PayloadCarryingRpcController.cellScanner()
           
 

Methods in org.apache.hadoop.hbase.ipc that return types with arguments of type CellScanner
 Pair<com.google.protobuf.Message,CellScanner> RpcServer.call(Class<? extends IpcProtocol> protocol, Method method, com.google.protobuf.Message param, CellScanner cellScanner, long receiveTime, MonitoredRPCHandler status)
          Called for each call.
 Pair<com.google.protobuf.Message,CellScanner> HBaseClient.call(Method method, com.google.protobuf.Message param, CellScanner cells, InetSocketAddress addr, Class<? extends IpcProtocol> protocol, User ticket, int rpcTimeout)
          Make a call, passing param, to the IPC server running at address which is servicing the protocol protocol, with the ticket credentials, returning the value.
 

Methods in org.apache.hadoop.hbase.ipc with parameters of type CellScanner
 Pair<com.google.protobuf.Message,CellScanner> RpcServer.call(Class<? extends IpcProtocol> protocol, Method method, com.google.protobuf.Message param, CellScanner cellScanner, long receiveTime, MonitoredRPCHandler status)
          Called for each call.
 Pair<com.google.protobuf.Message,CellScanner> HBaseClient.call(Method method, com.google.protobuf.Message param, CellScanner cells, InetSocketAddress addr, Class<? extends IpcProtocol> protocol, User ticket, int rpcTimeout)
          Make a call, passing param, to the IPC server running at address which is servicing the protocol protocol, with the ticket credentials, returning the value.
 void PayloadCarryingRpcController.setCellScanner(CellScanner cellScanner)
           
 void HBaseClient.Call.setResponse(com.google.protobuf.Message response, CellScanner cells)
          Set the return value when there is no error.
protected  void HBaseServer.Call.setResponse(Object m, CellScanner cells, Throwable t, String errorMsg)
           
 

Constructors in org.apache.hadoop.hbase.ipc with parameters of type CellScanner
HBaseClient.Call(Method method, com.google.protobuf.Message param, CellScanner cells)
           
HBaseServer.Call(int id, Method method, com.google.protobuf.Message param, CellScanner cellScanner, HBaseServer.Connection connection, HBaseServer.Responder responder, long size, org.cloudera.htrace.TraceInfo tinfo)
           
PayloadCarryingRpcController(CellScanner cellScanner)
           
 

Uses of CellScanner in org.apache.hadoop.hbase.protobuf
 

Methods in org.apache.hadoop.hbase.protobuf with parameters of type CellScanner
static List<Object> ResponseConverter.getResults(ClientProtos.MultiResponse proto, CellScanner cells)
          Get the results from a protocol buffer MultiResponse
static Append ProtobufUtil.toAppend(ClientProtos.MutationProto proto, CellScanner cellScanner)
          Convert a protocol buffer Mutate to an Append
static Delete ProtobufUtil.toDelete(ClientProtos.MutationProto proto, CellScanner cellScanner)
          Convert a protocol buffer Mutate to a Delete
static Increment ProtobufUtil.toIncrement(ClientProtos.MutationProto proto, CellScanner cellScanner)
          Convert a protocol buffer Mutate to an Increment
static Put ProtobufUtil.toPut(ClientProtos.MutationProto proto, CellScanner cellScanner)
          Convert a protocol buffer Mutate to a Put.
static Result ProtobufUtil.toResult(ClientProtos.Result proto, CellScanner scanner)
          Convert a protocol buffer Result to a client Result
 

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

Methods in org.apache.hadoop.hbase.regionserver with parameters of type CellScanner
protected  Result HRegionServer.append(HRegion region, ClientProtos.MutationProto m, CellScanner cellScanner)
          Execute an append mutation.
protected  void HRegionServer.doBatchOp(ClientProtos.MultiResponse.Builder builder, HRegion region, List<ClientProtos.MutationProto> mutations, CellScanner cells)
          Execute a list of Put/Delete mutations.
protected  Result HRegionServer.increment(HRegion region, ClientProtos.MutationProto mutation, CellScanner cells)
          Execute an increment mutation.
protected  void HRegionServer.mutateRows(HRegion region, List<ClientProtos.MutationProto> mutations, CellScanner cellScanner)
          Mutate a list of rows atomically.
 



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