Uses of Interface
org.apache.hadoop.hbase.client.coprocessor.Batch.Callback

Packages that use Batch.Callback
org.apache.hadoop.hbase.client Provides HBase Client 
org.apache.hadoop.hbase.rest.client   
 

Uses of Batch.Callback in org.apache.hadoop.hbase.client
 

Methods in org.apache.hadoop.hbase.client with parameters of type Batch.Callback
<R> Object[]
HTableInterface.batchCallback(List<? extends Row> actions, Batch.Callback<R> callback)
          Same as HTableInterface.batch(List), but with a callback.
<R> Object[]
HTable.batchCallback(List<? extends Row> actions, Batch.Callback<R> callback)
           
<R> void
HTableInterface.batchCallback(List<? extends Row> actions, Object[] results, Batch.Callback<R> callback)
          Same as HTableInterface.batch(List, Object[]), but with a callback.
<R> void
HTable.batchCallback(List<? extends Row> actions, Object[] results, Batch.Callback<R> callback)
           
<T extends com.google.protobuf.Service,R>
void
HTableInterface.coprocessorService(Class<T> service, byte[] startKey, byte[] endKey, Batch.Call<T,R> callable, Batch.Callback<R> callback)
          Creates an instance of the given Service subclass for each table region spanning the range from the startKey row to endKey row (inclusive), and invokes the passed Batch.Call.call(T) method with each Service instance.
<T extends com.google.protobuf.Service,R>
void
HTable.coprocessorService(Class<T> service, byte[] startKey, byte[] endKey, Batch.Call<T,R> callable, Batch.Callback<R> callback)
          Creates an instance of the given Service subclass for each table region spanning the range from the startKey row to endKey row (inclusive), and invokes the passed Batch.Call.call(T) method with each Service instance.
<R> void
HConnectionWrapper.processBatchCallback(List<? extends Row> list, byte[] tableName, ExecutorService pool, Object[] results, Batch.Callback<R> callback)
           
<R> void
HConnection.processBatchCallback(List<? extends Row> list, byte[] tableName, ExecutorService pool, Object[] results, Batch.Callback<R> callback)
          Deprecated. 
<R> void
HTable.processBatchCallback(List<? extends Row> list, Object[] results, Batch.Callback<R> callback)
          Process a mixed batch of Get, Put and Delete actions.
<R> void
HConnectionWrapper.processBatchCallback(List<? extends Row> list, TableName tableName, ExecutorService pool, Object[] results, Batch.Callback<R> callback)
           
<R> void
HConnection.processBatchCallback(List<? extends Row> list, TableName tableName, ExecutorService pool, Object[] results, Batch.Callback<R> callback)
          Deprecated. since 0.96 - Use HTableInterface.batchCallback(java.util.List, java.lang.Object[], org.apache.hadoop.hbase.client.coprocessor.Batch.Callback) instead
 

Uses of Batch.Callback in org.apache.hadoop.hbase.rest.client
 

Methods in org.apache.hadoop.hbase.rest.client with parameters of type Batch.Callback
<R> Object[]
RemoteHTable.batchCallback(List<? extends Row> actions, Batch.Callback<R> callback)
           
<R> void
RemoteHTable.batchCallback(List<? extends Row> actions, Object[] results, Batch.Callback<R> callback)
           
<T extends com.google.protobuf.Service,R>
void
RemoteHTable.coprocessorService(Class<T> service, byte[] startKey, byte[] endKey, Batch.Call<T,R> callable, Batch.Callback<R> callback)
           
 



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