Skip to content
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
2 changes: 2 additions & 0 deletions docs/_utils/javadoc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ mvn javadoc:javadoc
[ -d $OUTPUT_DIR ] && rm -r $OUTPUT_DIR
mkdir -p "$OUTPUT_DIR"
mv -f core/target/site/apidocs/* $OUTPUT_DIR
cp -an query-builder/target/site/apidocs/* $OUTPUT_DIR
cp -an mapper-runtime/target/site/apidocs/* $OUTPUT_DIR
8 changes: 4 additions & 4 deletions manual/core/reconnection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Note that the session is not accessible until it is fully ready: the `CqlSession
call — or the future returned by `buildAsync()` — will not complete until the connection
was established.

[ConstantReconnectionPolicy]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/internal/core/connection/ConstantReconnectionPolicy.html
[DriverContext]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/context/DriverContext.html
[ExponentialReconnectionPolicy]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/internal/core/connection/ExponentialReconnectionPolicy.html
[ReconnectionPolicy]: https://docs.datastax.com/en/drivers/java/4.14/com/datastax/oss/driver/api/core/connection/ReconnectionPolicy.html
[ConstantReconnectionPolicy]: https://github.com/scylladb/java-driver/blob/scylla-4.15.0.x/core/src/main/java/com/datastax/oss/driver/internal/core/connection/ConstantReconnectionPolicy.java
[DriverContext]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/context/DriverContext.html
[ExponentialReconnectionPolicy]: https://github.com/scylladb/java-driver/blob/scylla-4.15.0.x/core/src/main/java/com/datastax/oss/driver/internal/core/connection/ExponentialReconnectionPolicy.java
[ReconnectionPolicy]: https://docs.datastax.com/en/drivers/java/4.17/com/datastax/oss/driver/api/core/connection/ReconnectionPolicy.html
2 changes: 1 addition & 1 deletion manual/mapper/daos/getentity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ The method can return:
* a single entity instance. If the argument is a result set type, the generated code will extract
the first row and convert it, or return `null` if the result set is empty.

````java
```java
@GetEntity
Product asProduct(Row row);

Expand Down
Loading