Interface ListTypeDecoder
- All Superinterfaces:
PrimitiveTypeDecoder<List>,StreamTypeDecoder<List>,TypeDecoder<List>
- All Known Implementing Classes:
AbstractListTypeDecoder,List0TypeDecoder,List32TypeDecoder,List8TypeDecoder
Base class for List type decoders.
-
Method Summary
Modifier and TypeMethodDescriptionintreadCount(InputStream stream, StreamDecoderState state) Reads the number of elements contained in the encoded list from the providedInputStream.intreadCount(ProtonBuffer buffer, DecoderState state) Reads the number of elements contained in the encoded list from the providedProtonBuffer.Methods inherited from interface org.apache.qpid.protonj2.codec.decoders.PrimitiveTypeDecoder
getTypeCode, isJavaPrimitive, isPrimitiveMethods inherited from interface org.apache.qpid.protonj2.codec.StreamTypeDecoder
isArrayType, isNull, readArrayElements, readSize, readValue, skipValueMethods inherited from interface org.apache.qpid.protonj2.codec.TypeDecoder
isArrayType, isNull, readArrayElements, readSize, readValue, skipValue
-
Method Details
-
getTypeClass
- Specified by:
getTypeClassin interfaceStreamTypeDecoder<List>- Specified by:
getTypeClassin interfaceTypeDecoder<List>- Returns:
- the Class that this decoder handles.
-
readCount
Reads the number of elements contained in the encoded list from the providedProtonBuffer. The implementation must read the correct size encoding based on the type ofListthat thisTypeDecoderhandles.- Parameters:
buffer- The buffer where the size value should be read from.state- The decoder state that is in used during this decode operation.- Returns:
- an integer containing the number of elements in the encoded
List. - Throws:
DecodeException- if an error occurs while reading the encoded element count.
-
readCount
Reads the number of elements contained in the encoded list from the providedInputStream. The implementation must read the correct size encoding based on the type ofListthat thisTypeDecoderhandles.- Parameters:
stream- The stream where the size value should be read from.state- The decoder state that is in used during this decode operation.- Returns:
- an integer containing the number of elements in the encoded
List. - Throws:
DecodeException- if an error occurs while reading the encoded element count.
-