Package | Description |
---|---|
com.datastax.dse.driver.api.core.auth | |
com.datastax.dse.driver.api.core.graph | |
com.datastax.dse.driver.api.core.graph.reactive |
Modifier and Type | Method and Description |
---|---|
static <StatementT extends GraphStatement<StatementT>> |
ProxyAuthentication.executeAs(String userOrRole,
StatementT statement)
Adds proxy authentication information to a graph statement.
|
Modifier and Type | Interface and Description |
---|---|
interface |
GraphStatement<SelfT extends GraphStatement<SelfT>>
A request to execute a DSE Graph query.
|
class |
GraphStatementBuilderBase<SelfT extends GraphStatementBuilderBase<SelfT,StatementT>,StatementT extends GraphStatement<StatementT>> |
Modifier and Type | Interface and Description |
---|---|
interface |
BatchGraphStatement
A graph statement that groups multiple mutating traversals together, to be executed in the
same transaction.
|
interface |
FluentGraphStatement
A graph statement that uses a TinkerPop
GraphTraversal as the query. |
interface |
ScriptGraphStatement
A graph statement that uses a Gremlin-groovy script the query.
|
Modifier and Type | Method and Description |
---|---|
GraphStatement<?> |
GraphExecutionInfo.getStatement()
Deprecated.
The statement that was executed.
|
Modifier and Type | Method and Description |
---|---|
default GraphResultSet |
GraphSession.execute(GraphStatement<?> graphStatement)
Executes a graph statement synchronously (the calling thread blocks until the result becomes
available).
|
default CompletionStage<AsyncGraphResultSet> |
GraphSession.executeAsync(GraphStatement<?> graphStatement)
Executes a graph statement asynchronously (the call returns as soon as the statement was sent,
generally before the result is available).
|
Modifier and Type | Method and Description |
---|---|
default ReactiveGraphResultSet |
ReactiveGraphSession.executeReactive(GraphStatement<?> statement)
Returns a
ReactiveGraphResultSet that, once subscribed to, executes the given query and
emits all the results. |
Copyright © 2017–2024. All rights reserved.