Package | Description |
---|---|
org.neo4j.driver.async |
Modifier and Type | Method and Description |
---|---|
default <T> CompletionStage<T> |
AsyncSession.executeReadAsync(AsyncTransactionCallback<CompletionStage<T>> callback)
Execute a unit of work as a single, managed transaction with
read access mode and retry behaviour. |
<T> CompletionStage<T> |
AsyncSession.executeReadAsync(AsyncTransactionCallback<CompletionStage<T>> callback,
TransactionConfig config)
Execute a unit of work as a single, managed transaction with
read access mode and retry behaviour. |
default <T> CompletionStage<T> |
AsyncSession.executeWriteAsync(AsyncTransactionCallback<CompletionStage<T>> callback)
Execute a unit of work as a single, managed transaction with
write access mode and retry behaviour. |
<T> CompletionStage<T> |
AsyncSession.executeWriteAsync(AsyncTransactionCallback<CompletionStage<T>> callback,
TransactionConfig config)
Execute a unit of work as a single, managed transaction with
write access mode and retry behaviour. |