Class RawAsyncTableImpl

java.lang.Object
org.apache.hadoop.hbase.client.RawAsyncTableImpl
All Implemented Interfaces:
AsyncTable<AdvancedScanResultConsumer>

The implementation of RawAsyncTable.

The word 'Raw' means that this is a low level class. The returned CompletableFuture will be finished inside the rpc framework thread, which means that the callbacks registered to the CompletableFuture will also be executed inside the rpc framework thread. So users who use this class should not try to do time consuming tasks in the callbacks.

Since:
2.0.0
See Also: