File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
driver/src/main/java/org/neo4j/driver Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 64
64
*/
65
65
public interface Driver extends AutoCloseable {
66
66
/**
67
- * Creates a new {@link QueryTask} instance that executes an idempotent query in a managed transaction with
68
- * automatic retries on retryable errors.
67
+ * Creates a new {@link QueryTask} instance that executes a query in a managed transaction with automatic retries on
68
+ * retryable errors.
69
69
*
70
70
* @param query query string
71
71
* @return new query task instance
Original file line number Diff line number Diff line change 29
29
import org .neo4j .driver .util .Experimental ;
30
30
31
31
/**
32
- * A task that executes an idempotent query in a managed transaction with automatic retries on retryable errors.
32
+ * A task that executes a query in a managed transaction with automatic retries on retryable errors.
33
33
* <p>
34
- * This is a high-level API for executing an idempotent query. There are more advanced APIs available.
34
+ * This is a high-level API for executing a query. There are more advanced APIs available.
35
35
* For instance, {@link Session}, {@link Transaction} and transaction functions that are accessible via
36
36
* methods like {@link Session#executeWrite(TransactionCallback)}, {@link Session#executeWriteWithoutResult(Consumer)}
37
37
* and {@link Session#executeRead(TransactionCallback)} (there are also overloaded options available).
You can’t perform that action at this time.
0 commit comments