Package | Description |
---|---|
com.datastax.oss.driver.api.core.cql |
Modifier and Type | Field and Description |
---|---|
static GenericType<CompletionStage<AsyncResultSet>> |
Statement.ASYNC
The type returned when a CQL statement is executed asynchronously.
|
Modifier and Type | Method and Description |
---|---|
default CompletionStage<AsyncResultSet> |
AsyncCqlSession.executeAsync(Statement<?> statement)
Executes a CQL statement asynchronously (the call returns as soon as the statement was sent,
generally before the result is available).
|
default CompletionStage<AsyncResultSet> |
AsyncCqlSession.executeAsync(String query)
Executes a CQL statement asynchronously (the call returns as soon as the statement was sent,
generally before the result is available).
|
default CompletionStage<AsyncResultSet> |
AsyncCqlSession.executeAsync(String query,
Map<String,Object> values)
Executes a CQL statement asynchronously (the call returns as soon as the statement was sent,
generally before the result is available).
|
default CompletionStage<AsyncResultSet> |
AsyncCqlSession.executeAsync(String query,
Object... values)
Executes a CQL statement asynchronously (the call returns as soon as the statement was sent,
generally before the result is available).
|
Copyright © 2017–2024. All rights reserved.