Skip to content

Latest commit

 

History

History
20 lines (19 loc) · 641 Bytes

File metadata and controls

20 lines (19 loc) · 641 Bytes

Reactive Programming in JAVA | Project Reactorg

The reactor is a fourth-generation reactive library, based on the Reactive Streams specification, for building non-blocking applications on the JVM.

Topics covered:

  • What is Backpressure?
  • What is Reactive Stream?
  • Introduction to Project Reactor
  • Flux and Mono Reactive types
  • Project Setup
  • Writing the first Flux
  • Writing the first Mono
  • Logging Reactive Streams
  • JUnit testing for Flux and Mono
  • Operators in Reactive Programming (map Operator)
  • Filter Operator
  • FlatMap Operator
  • ConcatMap Operator
  • FlatMapMany Operator
  • Transform Operator
  • defaultIfEmpty Operator