| Modifier and Type | Field and Description |
|---|---|
static TypeArg<CassandraClient> |
__TYPE_ARG |
static String |
DEFAULT_SHARED_CLIENT_NAME
The default shared client name.
|
| Constructor and Description |
|---|
CassandraClient(CassandraClient delegate) |
CassandraClient(Object delegate) |
| Modifier and Type | Method and Description |
|---|---|
io.reactivex.rxjava3.core.Completable |
close()
Closes this client.
|
static CassandraClient |
create(Vertx vertx)
Like
create(io.vertx.rxjava3.core.Vertx) with default options. |
static CassandraClient |
create(Vertx vertx,
CassandraClientOptions options)
Create a Cassandra client which maintains its own driver session.
|
static CassandraClient |
createShared(Vertx vertx)
Like
createShared(io.vertx.rxjava3.core.Vertx) with default options and client name. |
static CassandraClient |
createShared(Vertx vertx,
CassandraClientOptions options)
Like
createShared(io.vertx.rxjava3.core.Vertx) with default client name. |
static CassandraClient |
createShared(Vertx vertx,
String clientName)
Like
createShared(io.vertx.rxjava3.core.Vertx) with default options. |
static CassandraClient |
createShared(Vertx vertx,
String clientName,
CassandraClientOptions options)
Create a Cassandra client that shares its driver session with any other client having the same name.
|
boolean |
equals(Object o) |
io.reactivex.rxjava3.core.Single<ResultSet> |
execute(com.datastax.oss.driver.api.core.cql.Statement statement)
Execute the statement and provide a handler for consuming results.
|
io.reactivex.rxjava3.core.Single<ResultSet> |
execute(String query)
Execute the query and provide a handler for consuming results.
|
io.reactivex.rxjava3.core.Single<List<com.datastax.oss.driver.api.core.cql.Row>> |
executeWithFullFetch(com.datastax.oss.driver.api.core.cql.Statement statement)
Execute the query and provide a handler for consuming results.
|
io.reactivex.rxjava3.core.Single<List<com.datastax.oss.driver.api.core.cql.Row>> |
executeWithFullFetch(String query)
Execute the query and provide a handler for consuming results.
|
CassandraClient |
getDelegate() |
int |
hashCode() |
boolean |
isConnected() |
io.reactivex.rxjava3.core.Single<com.datastax.oss.driver.api.core.metadata.Metadata> |
metadata()
Get for the session.
|
static CassandraClient |
newInstance(CassandraClient arg) |
io.reactivex.rxjava3.core.Single<com.datastax.oss.driver.api.core.cql.PreparedStatement> |
prepare(com.datastax.oss.driver.api.core.cql.SimpleStatement statement)
Prepares the provided a .
|
io.reactivex.rxjava3.core.Single<com.datastax.oss.driver.api.core.cql.PreparedStatement> |
prepare(String query)
Prepares the provided query string.
|
io.reactivex.rxjava3.core.Single<CassandraRowStream> |
queryStream(com.datastax.oss.driver.api.core.cql.Statement statement)
Executes the given SQL statement which returns the results of the query as a read stream.
|
io.reactivex.rxjava3.core.Single<CassandraRowStream> |
queryStream(String sql)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
io.reactivex.rxjava3.core.Completable |
rxClose()
Closes this client.
|
io.reactivex.rxjava3.core.Single<ResultSet> |
rxExecute(com.datastax.oss.driver.api.core.cql.Statement statement)
Execute the statement and provide a handler for consuming results.
|
io.reactivex.rxjava3.core.Single<ResultSet> |
rxExecute(String query)
Execute the query and provide a handler for consuming results.
|
io.reactivex.rxjava3.core.Single<List<com.datastax.oss.driver.api.core.cql.Row>> |
rxExecuteWithFullFetch(com.datastax.oss.driver.api.core.cql.Statement statement)
Execute the query and provide a handler for consuming results.
|
io.reactivex.rxjava3.core.Single<List<com.datastax.oss.driver.api.core.cql.Row>> |
rxExecuteWithFullFetch(String query)
Execute the query and provide a handler for consuming results.
|
io.reactivex.rxjava3.core.Single<com.datastax.oss.driver.api.core.metadata.Metadata> |
rxMetadata()
Get for the session.
|
io.reactivex.rxjava3.core.Single<com.datastax.oss.driver.api.core.cql.PreparedStatement> |
rxPrepare(com.datastax.oss.driver.api.core.cql.SimpleStatement statement)
Prepares the provided a .
|
io.reactivex.rxjava3.core.Single<com.datastax.oss.driver.api.core.cql.PreparedStatement> |
rxPrepare(String query)
Prepares the provided query string.
|
io.reactivex.rxjava3.core.Single<CassandraRowStream> |
rxQueryStream(com.datastax.oss.driver.api.core.cql.Statement statement)
Executes the given SQL statement which returns the results of the query as a read stream.
|
io.reactivex.rxjava3.core.Single<CassandraRowStream> |
rxQueryStream(String sql)
Executes the given SQL
SELECT statement which returns the results of the query as a read stream. |
String |
toString() |
public static final TypeArg<CassandraClient> __TYPE_ARG
public static final String DEFAULT_SHARED_CLIENT_NAME
public CassandraClient(CassandraClient delegate)
public CassandraClient(Object delegate)
public CassandraClient getDelegate()
public static CassandraClient create(Vertx vertx)
create(io.vertx.rxjava3.core.Vertx) with default options.vertx - public static CassandraClient create(Vertx vertx, CassandraClientOptions options)
It is not recommended to create several non shared clients in an application.
vertx - the Vert.x instanceoptions - the optionspublic static CassandraClient createShared(Vertx vertx)
createShared(io.vertx.rxjava3.core.Vertx) with default options and client name.vertx - public static CassandraClient createShared(Vertx vertx, String clientName)
createShared(io.vertx.rxjava3.core.Vertx) with default options.vertx - clientName - public static CassandraClient createShared(Vertx vertx, CassandraClientOptions options)
createShared(io.vertx.rxjava3.core.Vertx) with default client name.vertx - options - public static CassandraClient createShared(Vertx vertx, String clientName, CassandraClientOptions options)
vertx - the Vert.x instanceclientName - the shared client nameoptions - the optionspublic boolean isConnected()
public io.reactivex.rxjava3.core.Single<ResultSet> execute(String query)
query - the query to executepublic io.reactivex.rxjava3.core.Single<ResultSet> rxExecute(String query)
query - the query to executepublic io.reactivex.rxjava3.core.Single<CassandraRowStream> queryStream(String sql)
SELECT statement which returns the results of the query as a read stream.sql - the SQL to execute. For example SELECT * FROM table ....public io.reactivex.rxjava3.core.Single<CassandraRowStream> rxQueryStream(String sql)
SELECT statement which returns the results of the query as a read stream.sql - the SQL to execute. For example SELECT * FROM table ....public io.reactivex.rxjava3.core.Completable close()
public io.reactivex.rxjava3.core.Completable rxClose()
public io.reactivex.rxjava3.core.Single<List<com.datastax.oss.driver.api.core.cql.Row>> executeWithFullFetch(String query)
query - the query to executepublic io.reactivex.rxjava3.core.Single<List<com.datastax.oss.driver.api.core.cql.Row>> rxExecuteWithFullFetch(String query)
query - the query to executepublic io.reactivex.rxjava3.core.Single<List<com.datastax.oss.driver.api.core.cql.Row>> executeWithFullFetch(com.datastax.oss.driver.api.core.cql.Statement statement)
statement - the statement to executepublic io.reactivex.rxjava3.core.Single<List<com.datastax.oss.driver.api.core.cql.Row>> rxExecuteWithFullFetch(com.datastax.oss.driver.api.core.cql.Statement statement)
statement - the statement to executepublic io.reactivex.rxjava3.core.Single<ResultSet> execute(com.datastax.oss.driver.api.core.cql.Statement statement)
statement - the statement to executepublic io.reactivex.rxjava3.core.Single<ResultSet> rxExecute(com.datastax.oss.driver.api.core.cql.Statement statement)
statement - the statement to executepublic io.reactivex.rxjava3.core.Single<com.datastax.oss.driver.api.core.cql.PreparedStatement> prepare(String query)
query - the query to preparepublic io.reactivex.rxjava3.core.Single<com.datastax.oss.driver.api.core.cql.PreparedStatement> rxPrepare(String query)
query - the query to preparepublic io.reactivex.rxjava3.core.Single<com.datastax.oss.driver.api.core.cql.PreparedStatement> prepare(com.datastax.oss.driver.api.core.cql.SimpleStatement statement)
statement - the statement to preparepublic io.reactivex.rxjava3.core.Single<com.datastax.oss.driver.api.core.cql.PreparedStatement> rxPrepare(com.datastax.oss.driver.api.core.cql.SimpleStatement statement)
statement - the statement to preparepublic io.reactivex.rxjava3.core.Single<CassandraRowStream> queryStream(com.datastax.oss.driver.api.core.cql.Statement statement)
statement - the statement to execute.public io.reactivex.rxjava3.core.Single<CassandraRowStream> rxQueryStream(com.datastax.oss.driver.api.core.cql.Statement statement)
statement - the statement to execute.public io.reactivex.rxjava3.core.Single<com.datastax.oss.driver.api.core.metadata.Metadata> metadata()
public io.reactivex.rxjava3.core.Single<com.datastax.oss.driver.api.core.metadata.Metadata> rxMetadata()
public static CassandraClient newInstance(CassandraClient arg)
Copyright © 2022 Eclipse. All rights reserved.