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

org.springframework.http.server.reactive.HttpHandler Maven / Gradle / Ivy

/*
 * Copyright 2002-2018 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.http.server.reactive;

import reactor.core.publisher.Mono;

/**
 * Lowest level contract for reactive HTTP request handling that serves as a
 * common denominator across different runtimes.
 *
 * 

Higher-level, but still generic, building blocks for applications such as * {@code WebFilter}, {@code WebSession}, {@code ServerWebExchange}, and others * are available in the {@code org.springframework.web.server} package. * *

Application level programming models such as annotated controllers and * functional handlers are available in the {@code spring-webflux} module. * *

Typically an {@link HttpHandler} represents an entire application with * higher-level programming models bridged via * {@link org.springframework.web.server.adapter.WebHttpHandlerBuilder}. * Multiple applications at unique context paths can be plugged in with the * help of the {@link ContextPathCompositeHandler}. * * @author Arjen Poutsma * @author Rossen Stoyanchev * @since 5.0 * @see ContextPathCompositeHandler */ public interface HttpHandler { /** * Handle the given request and write to the response. * @param request current request * @param response current response * @return indicates completion of request handling */ Mono handle(ServerHttpRequest request, ServerHttpResponse response); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy