Package | Description |
---|---|
org.neo4j.driver.async |
Modifier and Type | Method and Description |
---|---|
<T> CompletionStage<T> |
AsyncSession.readTransactionAsync(AsyncTransactionWork<CompletionStage<T>> work)
Execute given unit of asynchronous work in a
read asynchronous transaction. |
<T> CompletionStage<T> |
AsyncSession.readTransactionAsync(AsyncTransactionWork<CompletionStage<T>> work,
TransactionConfig config)
Execute given unit of asynchronous work in a
read asynchronous transaction with
the specified configuration . |
<T> CompletionStage<T> |
AsyncSession.writeTransactionAsync(AsyncTransactionWork<CompletionStage<T>> work)
Execute given unit of asynchronous work in a
write asynchronous transaction. |
<T> CompletionStage<T> |
AsyncSession.writeTransactionAsync(AsyncTransactionWork<CompletionStage<T>> work,
TransactionConfig config)
Execute given unit of asynchronous work in a
write asynchronous transaction with
the specified configuration . |