subscribe()
is normally used to register a listener, but in Project Reactor it is used for both registering a listener and trigger a flow.
onNext
, onComplete
are normally used for listeners to handle next
and complete
signals, but Project Reactor uses them as the names of the events – so there are onNext
signals .