Java org.springframework.web.reactive.function.server ServerResponse fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.web.reactive.function.server ServerResponse fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.web.reactive.function.server ServerResponse.

The text is from its open source code.

Method

HttpHeadersheaders()
Return the headers of this response.
HeadersBuildernotFound()
Create a builder with a HttpStatus#NOT_FOUND 404 Not Found status.
BodyBuilderok()
Create a builder with the status set to HttpStatus#OK 200 OK .
BodyBuilderstatus(HttpStatus status)
Create a builder with the given HTTP status.
BodyBuilderstatus(int status)
Create a builder with the given HTTP status.
HttpStatusstatusCode()
Return the status code of this response.
MonowriteTo(ServerWebExchange exchange, Context context)
Write this response to the given web exchange.