Skip to content

Commit fec8337

Browse files
committed
Remove CloseableIterator from supported repository return types.
`CloseableIterator` wasn't intended to be here in the first place as it is only an intermediate type. Closes #2835
1 parent 54ffee0 commit fec8337

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/main/asciidoc/repositories-paging-sorting.adoc

-5
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,6 @@ The table shows which types you can return from a query method
8888
| Single query using typically cursors.
8989
| Store module must provide reactive infrastructure.
9090

91-
| `CloseableIterator<T>`
92-
| Chunked (one-by-one or in batches) depending on `CloseableIterator` consumption.
93-
| Single query using typically cursors.
94-
| `CloseableIterator` need to be closed after usage to avoid resource leaks.
95-
9691
| `Slice<T>`
9792
| `Pageable.getPageSize() + 1` at `Pageable.getOffset()`
9893
| One to many queries fetching data starting at `Pageable.getOffset()` applying limiting.

0 commit comments

Comments
 (0)