Skip to content

Update QueryTask Javadoc #1369

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions driver/src/main/java/org/neo4j/driver/Driver.java
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
*/
public interface Driver extends AutoCloseable {
/**
* Creates a new {@link QueryTask} instance that executes an idempotent query in a managed transaction with
* automatic retries on retryable errors.
* Creates a new {@link QueryTask} instance that executes a query in a managed transaction with automatic retries on
* retryable errors.
*
* @param query query string
* @return new query task instance
Expand Down
4 changes: 2 additions & 2 deletions driver/src/main/java/org/neo4j/driver/QueryTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
import org.neo4j.driver.util.Experimental;

/**
* A task that executes an idempotent query in a managed transaction with automatic retries on retryable errors.
* A task that executes a query in a managed transaction with automatic retries on retryable errors.
* <p>
* This is a high-level API for executing an idempotent query. There are more advanced APIs available.
* This is a high-level API for executing a query. There are more advanced APIs available.
* For instance, {@link Session}, {@link Transaction} and transaction functions that are accessible via
* methods like {@link Session#executeWrite(TransactionCallback)}, {@link Session#executeWriteWithoutResult(Consumer)}
* and {@link Session#executeRead(TransactionCallback)} (there are also overloaded options available).
Expand Down