In a controller I can write:
fun update(@RequestBody myPojo: MyPojo): Mono<Void>
or
fun update(@RequestBody myPojo: Mono<MyPojo>): Mono<Void>
is there any difference? will the body parsing be done in different threads? in first case will i block the main reactor thread until myPojo
is parsed?