neo4j / sdn-rx

Nextgen Spring Data module for Neo4j supporting (not only) reactive data access and immutable support
https://neo4j.github.io/sdn-rx
Apache License 2.0
65 stars 23 forks source link

Provide limited support for Pageable in reactive. #123

Closed meistermeier closed 4 years ago

meistermeier commented 4 years ago

This commit enables using Pageable as parameter in a reactive derived finder method to return a Flux. It will not support using Page or Slice as the return type.

The only reason for providing this feature is bringing some convenience from the imperative world to the reactive one. There are no plans to bring in broader support e.g. accepting Mono<Page<T>> or Mono<Slice<T>> as the return types.

atomfrede commented 4 years ago

Will try to test it later tonight

atomfrede commented 4 years ago

Works fine, still some issues, but application starts up without any issues now :+1: