For creating a reactive stream in Spring Boot, the _____ class is used to represent a stream of 0 or more items.

  • Flux
  • Mono
  • Observable
  • Stream
In Spring Boot, the Flux class is used to represent a reactive stream of 0 or more items. It's a fundamental class in the Reactor library, which is at the core of Spring WebFlux. Flux is used to model sequences of data that can be processed asynchronously and reactively, making it suitable for building reactive applications.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *