Packages that use org.apache.hadoop.hbase.client.AsyncConnection
-
Uses of org.apache.hadoop.hbase.client.AsyncConnection in org.apache.hadoop.hbase
default org.apache.hadoop.hbase.client.AsyncConnection
Server.getAsyncConnection()
Returns a reference to the servers' async connection.
-
interface
org.apache.hadoop.hbase.client.AsyncClusterConnection
The asynchronous connection for internal usage.
class
org.apache.hadoop.hbase.client.AsyncConnectionImpl
The implementation of AsyncConnection.
class
org.apache.hadoop.hbase.client.SharedAsyncConnection
Wraps a AsyncConnection
to make it can't be closed.
org.apache.hadoop.hbase.client.AsyncConnection
Connection.toAsyncConnection()
Convert this connection to an AsyncConnection
.
org.apache.hadoop.hbase.client.AsyncConnection
SharedConnection.toAsyncConnection()
ConnectionFactory.createAsyncConnection()
Call ConnectionFactory.createAsyncConnection(Configuration)
using default HBaseConfiguration.
ConnectionFactory.createAsyncConnection(URI connectionUri)
Call ConnectionFactory.createAsyncConnection(URI, Configuration)
using default HBaseConfiguration.
ConnectionFactory.createAsyncConnection(URI connectionUri,
org.apache.hadoop.conf.Configuration conf)
Call ConnectionFactory.createAsyncConnection(Configuration, User)
using the given connectionUri
,
conf
and a User object created by UserProvider
.
ConnectionFactory.createAsyncConnection(URI connectionUri,
org.apache.hadoop.conf.Configuration conf,
org.apache.hadoop.hbase.security.User user)
Create a new AsyncConnection instance using the passed connectionUri
, conf
and
user
.
ConnectionFactory.createAsyncConnection(URI connectionUri,
org.apache.hadoop.conf.Configuration conf,
org.apache.hadoop.hbase.security.User user,
Map<String,byte[]> connectionAttributes)
Create a new AsyncConnection instance using the passed connectionUri
, conf
and
user
.
ConnectionFactory.createAsyncConnection(org.apache.hadoop.conf.Configuration conf)
Call ConnectionFactory.createAsyncConnection(Configuration, User)
using the given conf
and a
User object created by UserProvider
.
ConnectionFactory.createAsyncConnection(org.apache.hadoop.conf.Configuration conf,
org.apache.hadoop.hbase.security.User user)
Create a new AsyncConnection instance using the passed conf
and user
.
ConnectionFactory.createAsyncConnection(org.apache.hadoop.conf.Configuration conf,
org.apache.hadoop.hbase.security.User user,
Map<String,byte[]> connectionAttributes)
Create a new AsyncConnection instance using the passed conf
and user
.
SharedAsyncConnection(org.apache.hadoop.hbase.client.AsyncConnection conn)