Package | Description |
---|---|
com.datastax.dse.driver.api.core.auth | |
com.datastax.dse.driver.api.core.graph | |
com.datastax.dse.driver.internal.core.graph |
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()
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<? extends 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 | Class and Description |
---|---|
class |
GraphStatementBase<SelfT extends GraphStatement<SelfT>> |
Modifier and Type | Class and Description |
---|---|
class |
BytecodeGraphStatement
A dedicated statement implementation for implicit traversal execution via a
DseGraphRemoteConnection . |
class |
DefaultBatchGraphStatement |
class |
DefaultFluentGraphStatement |
class |
DefaultScriptGraphStatement |
class |
GraphStatementBase<SelfT extends GraphStatement<SelfT>> |
Modifier and Type | Method and Description |
---|---|
GraphStatement<?> |
DefaultGraphExecutionInfo.getStatement() |
Modifier and Type | Method and Description |
---|---|
GraphResultSet |
GraphRequestSyncProcessor.process(GraphStatement<?> request,
com.datastax.oss.driver.internal.core.session.DefaultSession session,
com.datastax.oss.driver.internal.core.context.InternalDriverContext context,
String sessionLogPrefix) |
CompletionStage<AsyncGraphResultSet> |
GraphRequestAsyncProcessor.process(GraphStatement<?> request,
com.datastax.oss.driver.internal.core.session.DefaultSession session,
com.datastax.oss.driver.internal.core.context.InternalDriverContext context,
String sessionLogPrefix) |
Constructor and Description |
---|
DefaultGraphExecutionInfo(GraphStatement<?> statement,
com.datastax.oss.driver.api.core.metadata.Node coordinator,
int speculativeExecutionCount,
int successfulExecutionIndex,
List<Map.Entry<com.datastax.oss.driver.api.core.metadata.Node,Throwable>> errors,
com.datastax.oss.protocol.internal.Frame frame) |
GraphRequestHandler(GraphStatement<?> graphStatement,
com.datastax.oss.driver.internal.core.session.DefaultSession dseSession,
com.datastax.oss.driver.internal.core.context.InternalDriverContext context,
String sessionLogPrefix) |
Copyright © 2017–2019. All rights reserved.