All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.bytebuddy.bytecode.ReactiveHandler Maven / Gradle / Ivy

The newest version!
package org.springframework.bytebuddy.bytecode;

import org.springframework.web.reactive.function.server.ServerRequest;
import org.springframework.web.reactive.function.server.ServerResponse;

import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;

public abstract class ReactiveHandler {
	
	public Mono mono(ServerRequest request){
		return Mono.empty();
	}
	
	public Flux flux(ServerRequest request){
		return Flux.empty();
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy