Listen on changes through spring-webflux and spring reactive data
问题 TL;DR; Is it possible to listen on changes through spring-webflux & spring reactive data ? End of TL;DR; Hi, I did few tutorials regarding new spring webflux module and spring mongo reactive. (correct me If I'm wrong) There are two basic types in reactive spring, Mono (for 0 or single object) and Flux (0 - n) objects. If I return a Flux json object ( a list of all comments) then my client is going to receive them in one response (not in chunks or something). I did it here, I also can change