Skip to content

Commit

Permalink
fix wrong links
Browse files Browse the repository at this point in the history
  • Loading branch information
jklingsporn committed May 12, 2021
1 parent 7b4ace0 commit a5ef2e5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public <T> Future<Void> withCursor(Function<DSLContext, ? extends Query> queryFu
}

/**
* A convenient function to process a large result set using a {@link io.vertx.sqlclient.RowStream<Row>}.
* A convenient function to process a large result set using a {@link io.vertx.sqlclient.RowStream}.
* @param queryFunction The function that fetches the result set.
* @param streamFunction The function that processes the result set.
* @param fetchSize the amount to fetch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ public Single<RowSet<io.vertx.reactivex.sqlclient.Row>> executeAny(Function<DSLC
}

/**
* A convenient function to process a large result set using a {@link io.reactivex.Flowable<Row>} based on a
* {@link io.vertx.reactivex.sqlclient.RowStream<Row>}. This function borrows a connection from the bool and
* A convenient function to process a large result set using a {@link io.reactivex.Flowable} based on a
* {@link io.vertx.reactivex.sqlclient.RowStream}. This function borrows a connection from the bool and
* starts a transaction as long as the <code>Flowable</code> processes items. After completion, the transaction
* is committed and the connection is closed and put back into the pool.
* @param queryFunction The function that fetches the result set.
Expand All @@ -199,8 +199,8 @@ public Flowable<io.vertx.reactivex.sqlclient.Row> queryFlowableRow(Function<DSLC
}

/**
* A convenient function to process a large result set using a {@link io.reactivex.Flowable<Row>} based on a
* {@link io.vertx.reactivex.sqlclient.RowStream<Row>}. This function borrows a connection from the bool and
* A convenient function to process a large result set using a {@link io.reactivex.Flowable} based on a
* {@link io.vertx.reactivex.sqlclient.RowStream}. This function borrows a connection from the bool and
* starts a transaction as long as the <code>Flowable</code> processes items. After completion, the transaction
* is committed and the connection is closed and put back into the pool.
* @param queryFunction The function that fetches the result set.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ public Function<Row, P> pojoMapper() {
}

/**
* A convenient function to process a large result set using a {@link io.reactivex.Flowable<P>} based on a
* {@link io.vertx.reactivex.sqlclient.RowStream<Row>}. This function borrows a connection from the bool and
* A convenient function to process a large result set using a {@link io.reactivex.Flowable} based on a
* {@link io.vertx.reactivex.sqlclient.RowStream}. This function borrows a connection from the bool and
* starts a transaction as long as the <code>Flowable</code> processes items. After completion, the transaction
* is committed and the connection is closed and put back into the pool.
* @param queryFunction The function that fetches the result set.
Expand All @@ -88,8 +88,8 @@ public Flowable<P> queryFlowable(Function<DSLContext, ? extends ResultQuery<R>>
}

/**
* A convenient function to process a large result set using a {@link io.reactivex.Flowable<P>} based on a
* {@link io.vertx.reactivex.sqlclient.RowStream<Row>}. This function borrows a connection from the bool and
* A convenient function to process a large result set using a {@link io.reactivex.Flowable} based on a
* {@link io.vertx.reactivex.sqlclient.RowStream}. This function borrows a connection from the bool and
* starts a transaction as long as the <code>Flowable</code> processes items. After completion, the transaction
* is committed and the connection is closed and put back into the pool.
* @param queryFunction The function that fetches the result set.
Expand Down

0 comments on commit a5ef2e5

Please sign in to comment.