Skip to content

Commit 989af7d

Browse files
committed
Document Window<T> as a query return type.
Closes #3019
1 parent 34b24a5 commit 989af7d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: src/main/antora/modules/ROOT/pages/repositories/query-return-types-reference.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ Some store modules may define their own result wrapper types.
3232
|`CompletableFuture<T>`|A Java 8 `CompletableFuture`. Expects a method to be annotated with `@Async` and requires Spring's asynchronous method execution capability to be enabled.
3333
|`Slice<T>`|A sized chunk of data with an indication of whether there is more data available. Requires a `Pageable` method parameter.
3434
|`Page<T>`|A `Slice` with additional information, such as the total number of results. Requires a `Pageable` method parameter.
35+
|`Window<T>`|A `Window` of results obtained from a scroll query. Provides `ScrollPosition` to issue the next scroll query. Requires a `ScrollPosition` method parameter.
3536
|`GeoResult<T>`|A result entry with additional information, such as the distance to a reference location.
3637
|`GeoResults<T>`|A list of `GeoResult<T>` with additional information, such as the average distance to a reference location.
3738
|`GeoPage<T>`|A `Page` with `GeoResult<T>`, such as the average distance to a reference location.

0 commit comments

Comments
 (0)