Class RawAsyncHBaseAdmin

java.lang.Object
org.apache.hadoop.hbase.client.RawAsyncHBaseAdmin
All Implemented Interfaces:
AsyncAdmin

@Private class RawAsyncHBaseAdmin extends Object implements AsyncAdmin
The implementation of AsyncAdmin.

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: