Package io.micronaut.http.body
Interface TypedMessageBodyHandler<T>
- Type Parameters:
T
- The type
- All Superinterfaces:
MessageBodyHandler<T>
,MessageBodyReader<T>
,MessageBodyWriter<T>
,TypedMessageBodyReader<T>
,TypedMessageBodyWriter<T>
- All Known Implementing Classes:
NettyByteBufMessageBodyHandler
,NettyWritableBodyWriter
,WritableBodyWriter
public interface TypedMessageBodyHandler<T>
extends MessageBodyHandler<T>, TypedMessageBodyWriter<T>, TypedMessageBodyReader<T>
A body handler
MessageBodyHandler
with a type argument.- Since:
- 4.6
- Author:
- Denis Stepanov
-
Method Summary
Methods inherited from interface io.micronaut.http.body.MessageBodyReader
read, read
Methods inherited from interface io.micronaut.http.body.MessageBodyWriter
createSpecific, isBlocking, writeTo, writeTo
Methods inherited from interface io.micronaut.http.body.TypedMessageBodyReader
isReadable
Methods inherited from interface io.micronaut.http.body.TypedMessageBodyWriter
isWriteable
-
Method Details
-
getType
- Specified by:
getType
in interfaceTypedMessageBodyReader<T>
- Specified by:
getType
in interfaceTypedMessageBodyWriter<T>
- Returns:
- The body type.
-