Hi all! Could you you explain why RouterFunctionDs...
# spring
v
Hi all! Could you you explain why RouterFunctionDsl doesn’t have methods for http requests with Flux? There is only Mono like this
Copy code
fun GET(pattern: String, f: (ServerRequest) -> Mono<ServerResponse>) {
		routes += RouterFunctions.route(RequestPredicates.GET(pattern), HandlerFunction { f(it) })
	}