Uses of Interface
org.apache.hadoop.hbase.client.coprocessor.Batch.Call
-
Uses of Batch.Call in org.apache.hadoop.hbase.client
Modifier 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 givenService
subclass for each table region spanning the range from thestartKey
row toendKey
row (inclusive), and invokes the passedcall(T)
method with eachService
instance.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 givenService
subclass for each table region spanning the range from thestartKey
row toendKey
row (inclusive), and invokes the passedcall(T)
method with eachService
instance.