Package io.micronaut.http.netty.body
Interface NettyWriteContext
- All Known Implementing Classes:
PipeliningServerHandler.OutboundAccess
This interface is used to write the different kinds of netty responses.
- Since:
- 4.0.0
-
Method Summary
Modifier and TypeMethodDescription@NonNull io.netty.buffer.ByteBufAllocator
alloc()
void
writeChunked
(@NonNull io.netty.handler.codec.http.HttpResponse response, @NonNull io.netty.handler.codec.http.HttpChunkedInput chunkedInput) Write a response with aHttpChunkedInput
body.void
writeFile
(@NonNull io.netty.handler.codec.http.HttpResponse response, @NonNull RandomAccessFile randomAccessFile, long position, long contentLength) Write a response with a body that is a section of aRandomAccessFile
.default void
Write a full response.void
Write a full response.void
writeStreamed
(@NonNull io.netty.handler.codec.http.HttpResponse response, @NonNull Publisher<io.netty.handler.codec.http.HttpContent> content) Write a streamed response.
-
Method Details
-
alloc
- Returns:
- The bytebuf allocator.
-
writeFull
Write a full response.- Parameters:
response
- The response to write
-
writeFull
void writeFull(@NonNull @NonNull io.netty.handler.codec.http.FullHttpResponse response, boolean headResponse) Write a full response.- Parameters:
response
- The response to writeheadResponse
- Iftrue
, this is a response to aHEAD
request, so theContent-Length
header should not be overwritten.
-
writeStreamed
void writeStreamed(@NonNull @NonNull io.netty.handler.codec.http.HttpResponse response, @NonNull @NonNull Publisher<io.netty.handler.codec.http.HttpContent> content) Write a streamed response.- Parameters:
response
- The response to writecontent
- The body
-
writeChunked
void writeChunked(@NonNull @NonNull io.netty.handler.codec.http.HttpResponse response, @NonNull @NonNull io.netty.handler.codec.http.HttpChunkedInput chunkedInput) Write a response with aHttpChunkedInput
body.- Parameters:
response
- The response. Must not be aFullHttpResponse
chunkedInput
- The response body
-
writeFile
void writeFile(@NonNull @NonNull io.netty.handler.codec.http.HttpResponse response, @NonNull @NonNull RandomAccessFile randomAccessFile, long position, long contentLength) Write a response with a body that is a section of aRandomAccessFile
.- Parameters:
response
- The response. Must not be aFullHttpResponse
randomAccessFile
- File to read fromposition
- Start positioncontentLength
- Length of the section to send
-