Uses of Interface
org.apache.hadoop.hbase.client.coprocessor.Batch.Call
Packages that use Batch.Call
-
Uses of Batch.Call in org.apache.hadoop.hbase.client
Methods in org.apache.hadoop.hbase.client with parameters of type Batch.CallModifier and TypeMethodDescription<T extends com.google.protobuf.Service,R>
Map<byte[],R> HTable.coprocessorService(Class<T> service, byte[] startKey, byte[] endKey, Batch.Call<T, R> callable) <T extends com.google.protobuf.Service,R>
voidHTable.coprocessorService(Class<T> service, byte[] startKey, byte[] endKey, Batch.Call<T, R> callable, Batch.Callback<R> callback) default <T extends com.google.protobuf.Service,R>
Map<byte[],R> Table.coprocessorService(Class<T> service, byte[] startKey, byte[] endKey, Batch.Call<T, R> callable) Creates an instance of the givenServicesubclass for each table region spanning the range from thestartKeyrow toendKeyrow (inclusive), and invokes the passedcall(T)method with eachServiceinstance.default <T extends com.google.protobuf.Service,R>
voidTable.coprocessorService(Class<T> service, byte[] startKey, byte[] endKey, Batch.Call<T, R> callable, Batch.Callback<R> callback) Creates an instance of the givenServicesubclass for each table region spanning the range from thestartKeyrow toendKeyrow (inclusive), and invokes the passedcall(T)method with eachServiceinstance.