You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/antora/modules/ROOT/pages/repositories/query-return-types-reference.adoc
+1
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,7 @@ Some store modules may define their own result wrapper types.
32
32
|`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.
33
33
|`Slice<T>`|A sized chunk of data with an indication of whether there is more data available. Requires a `Pageable` method parameter.
34
34
|`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.
35
36
|`GeoResult<T>`|A result entry with additional information, such as the distance to a reference location.
36
37
|`GeoResults<T>`|A list of `GeoResult<T>` with additional information, such as the average distance to a reference location.
37
38
|`GeoPage<T>`|A `Page` with `GeoResult<T>`, such as the average distance to a reference location.
0 commit comments