(global) Single & Multi mapping
this is experimental |
single & multi wrapper
When using WebFlux we like to wrap certain parameters & results types in reactive types like
Mono<>
or Flux<>
.
To achieve this the processor knows two special mappings:
-
single
: to wrap non-array like types (i.e. not a collection) -
multi
: to wrap array like types (i.e. a collection)