Uses of Interface
org.apache.hadoop.hbase.client.Row

Packages that use Row
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.client.coprocessor Provides client classes for invoking Coprocessor RPC protocols 
org.apache.hadoop.hbase.rest.client   
 

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

Classes in org.apache.hadoop.hbase.client that implement Row
 class Delete
          Used to perform Delete operations on a single row.
 class Get
          Used to perform Get operations on a single row.
 class Put
          Used to perform Put operations for a single row.
 

Methods in org.apache.hadoop.hbase.client that return Row
 Row Action.getAction()
           
 Row RetriesExhaustedWithDetailsException.getRow(int i)
           
 

Methods in org.apache.hadoop.hbase.client with parameters of type Row
 int Get.compareTo(Row other)
           
 int Mutation.compareTo(Row d)
           
 

Method parameters in org.apache.hadoop.hbase.client with type arguments of type Row
 Object[] HTable.batch(List<Row> actions)
          Same as HTableInterface.batch(List, Object[]), but returns an array of results instead of using a results parameter reference.
 Object[] HTableInterface.batch(List<Row> actions)
          Same as HTableInterface.batch(List, Object[]), but returns an array of results instead of using a results parameter reference.
 void HTable.batch(List<Row> actions, Object[] results)
          Method that does a batch call on Deletes, Gets and Puts.
 void HTableInterface.batch(List<Row> actions, Object[] results)
          Method that does a batch call on Deletes, Gets and Puts.
static void HTableUtil.bucketRsBatch(HTable htable, List<Row> rows)
          Processes a List of Rows (Put, Delete) and writes them to an HTable instance in RegionServer buckets via the htable.batch method.
static String RetriesExhaustedWithDetailsException.getDesc(List<Throwable> exceptions, List<Row> actions, List<String> hostnamePort)
           
 void HConnection.processBatch(List<? extends Row> actions, byte[] tableName, ExecutorService pool, Object[] results)
          Process a mixed batch of Get, Put and Delete actions.
<R> void
HConnection.processBatchCallback(List<? extends Row> list, byte[] tableName, ExecutorService pool, Object[] results, Batch.Callback<R> callback)
          Parameterized batch processing, allowing varying return types for different Row implementations.
 

Constructors in org.apache.hadoop.hbase.client with parameters of type Row
Action(byte[] regionName, Row action, int originalIndex)
          Deprecated. 
Action(Row action, int originalIndex)
           
 

Constructor parameters in org.apache.hadoop.hbase.client with type arguments of type Row
RetriesExhaustedWithDetailsException(List<Throwable> exceptions, List<Row> actions, List<String> hostnameAndPort)
           
 

Uses of Row in org.apache.hadoop.hbase.client.coprocessor
 

Classes in org.apache.hadoop.hbase.client.coprocessor that implement Row
 class Exec
          Represents an arbitrary method invocation against a Coprocessor instance.
 

Methods in org.apache.hadoop.hbase.client.coprocessor with parameters of type Row
 int Exec.compareTo(Row row)
           
 

Uses of Row in org.apache.hadoop.hbase.rest.client
 

Method parameters in org.apache.hadoop.hbase.rest.client with type arguments of type Row
 Object[] RemoteHTable.batch(List<Row> actions)
           
 void RemoteHTable.batch(List<Row> actions, Object[] results)
           
 



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