I am working on Spring Reactor to write REST Services. I was wondering if there is an annotation to Reactor.receive
method like we have @Selector
and @ReplyTo
Such that :
in.consume(req -> reactor.sendAndReceive("test.httprequests", Event.wrap(req.getUri()), (Event<String>ev) -> {
invokes the annotated method.