Class AsyncTableImpl

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

@Private class AsyncTableImpl extends Object implements AsyncTable<ScanResultConsumer>
Just a wrapper of RawAsyncTableImpl. The difference is that users need to provide a thread pool when constructing this class, and the callback methods registered to the returned CompletableFuture will be executed in this thread pool. So usually it is safe for users to do anything they want in the callbacks without breaking the rpc framework.