Class InputStreamBodyWriter
java.lang.Object
io.micronaut.http.server.netty.body.InputStreamBodyWriter
- All Implemented Interfaces:
MessageBodyWriter<InputStream>
,NettyBodyWriter<InputStream>
@Internal
@Singleton
public final class InputStreamBodyWriter
extends Object
implements NettyBodyWriter<InputStream>
Body writer for
InputStream
s.- Since:
- 4.0.0
- Author:
- Graeme Rocher
-
Field Summary
Modifier and TypeFieldDescriptionprotected final NettyHttpServerConfiguration.FileTypeHandlerConfiguration
-
Method Summary
Modifier and TypeMethodDescriptionprotected boolean
handleIfModifiedAndHeaders
(HttpRequest<?> request, MutableHttpResponse<?> response, FileCustomizableResponseType systemFile, NettyMutableHttpResponse<?> nettyResponse) protected io.netty.handler.codec.http.FullHttpResponse
notModified
(MutableHttpResponse<?> originalResponse) protected void
setDateAndCacheHeaders
(MutableHttpResponse response, long lastModified) protected void
setDateHeader
(MutableHttpResponse response) void
writeTo
(Argument<InputStream> type, MediaType mediaType, InputStream object, MutableHeaders outgoingHeaders, OutputStream outputStream) Writes an object to the given output stream.void
writeTo
(HttpRequest<?> request, MutableHttpResponse<InputStream> outgoingResponse, Argument<InputStream> type, MediaType mediaType, InputStream object, NettyWriteContext nettyContext) Write an object to the given context.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.micronaut.http.body.MessageBodyWriter
createSpecific, isBlocking, isWriteable, writeTo
-
Field Details
-
configuration
-
-
Method Details
-
writeTo
public void writeTo(HttpRequest<?> request, MutableHttpResponse<InputStream> outgoingResponse, Argument<InputStream> type, MediaType mediaType, InputStream object, NettyWriteContext nettyContext) throws CodecException Description copied from interface:NettyBodyWriter
Write an object to the given context.- Specified by:
writeTo
in interfaceNettyBodyWriter<InputStream>
- Parameters:
request
- The associated requestoutgoingResponse
- The outgoing response.type
- The typemediaType
- The media typeobject
- The object to writenettyContext
- The netty context- Throws:
CodecException
- If an error occurs decoding
-
writeTo
public void writeTo(Argument<InputStream> type, MediaType mediaType, InputStream object, MutableHeaders outgoingHeaders, OutputStream outputStream) throws CodecException Description copied from interface:MessageBodyWriter
Writes an object to the given output stream.- Specified by:
writeTo
in interfaceMessageBodyWriter<InputStream>
- Parameters:
type
- The typemediaType
- The media typeobject
- The object to writeoutgoingHeaders
- The HTTP headersoutputStream
- The output stream- Throws:
CodecException
- If an error occurs decoding
-
handleIfModifiedAndHeaders
protected boolean handleIfModifiedAndHeaders(HttpRequest<?> request, MutableHttpResponse<?> response, FileCustomizableResponseType systemFile, NettyMutableHttpResponse<?> nettyResponse) -
setDateAndCacheHeaders
- Parameters:
response
- The Http responselastModified
- The last modified
-
setDateHeader
- Parameters:
response
- The Http response
-
notModified
protected io.netty.handler.codec.http.FullHttpResponse notModified(MutableHttpResponse<?> originalResponse)
-