public class ReactorServerHttpResponse extends AbstractServerHttpResponse implements ZeroCopyHttpOutputMessage
ServerHttpResponse
to the HttpServerResponse
.Modifier and Type | Field and Description |
---|---|
private HttpServerResponse |
response |
Constructor and Description |
---|
ReactorServerHttpResponse(HttpServerResponse response,
DataBufferFactory bufferFactory) |
Modifier and Type | Method and Description |
---|---|
protected void |
applyCookies()
Implement this method to add cookies from
AbstractServerHttpResponse.getHeaders() to the
underlying response. |
protected void |
applyHeaders()
Implement this method to apply header changes from
AbstractServerHttpResponse.getHeaders()
to the underlying response. |
protected void |
applyStatusCode()
Implement this method to write the status code to the underlying response.
|
HttpServerResponse |
getReactorResponse() |
private static <any> |
toByteBufs(<any> dataBuffers) |
protected <any> |
writeAndFlushWithInternal(<any> publisher)
Implement this method to write to the underlying the response, and flush after
each
Publisher<DataBuffer> . |
<any> |
writeWith(java.io.File file,
long position,
long count)
Use the given
File to write the body of the message to the underlying
HTTP layer. |
protected <any> |
writeWithInternal(<any> publisher)
Implement this method to write to the underlying the response.
|
beforeCommit, bufferFactory, doCommit, doCommit, encodeUrl, getCookies, getHeaders, getStatusCode, isCommitted, registerUrlEncoder, setComplete, setStatusCode, writeAndFlushWith, writeWith
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
beforeCommit, bufferFactory, isCommitted, setComplete, writeAndFlushWith, writeWith
getHeaders
public ReactorServerHttpResponse(HttpServerResponse response, DataBufferFactory bufferFactory)
public HttpServerResponse getReactorResponse()
protected void applyStatusCode()
AbstractServerHttpResponse
applyStatusCode
in class AbstractServerHttpResponse
protected <any> writeWithInternal(<any> publisher)
AbstractServerHttpResponse
writeWithInternal
in class AbstractServerHttpResponse
publisher
- the publisher to write withprotected <any> writeAndFlushWithInternal(<any> publisher)
AbstractServerHttpResponse
Publisher<DataBuffer>
.writeAndFlushWithInternal
in class AbstractServerHttpResponse
publisher
- the publisher to write and flush withprotected void applyHeaders()
AbstractServerHttpResponse
AbstractServerHttpResponse.getHeaders()
to the underlying response. This method is called once only.applyHeaders
in class AbstractServerHttpResponse
protected void applyCookies()
AbstractServerHttpResponse
AbstractServerHttpResponse.getHeaders()
to the
underlying response. This method is called once only.applyCookies
in class AbstractServerHttpResponse
public <any> writeWith(java.io.File file, long position, long count)
ZeroCopyHttpOutputMessage
File
to write the body of the message to the underlying
HTTP layer.writeWith
in interface ZeroCopyHttpOutputMessage
file
- the file to transferposition
- the position within the file from which the transfer is to begincount
- the number of bytes to be transferredprivate static <any> toByteBufs(<any> dataBuffers)