Methods returning a Publisher type (Publisher, Flux, Mono) should not call the
subscribe
method directly because it can break the reactive call chain. Instead of using
subscribe
consider using composition operators like
flatMap
,
zip
,
then
, etc.