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) Reads the number of elements contained in the encoded list from the providedInputStream.intreadCount(ProtonBuffer buffer) Reads the number of elements contained in the encoded list from the providedProtonBuffer.intreadSize(InputStream stream) Reads the size in bytes of the encoded list from the providedInputStream.intreadSize(ProtonBuffer buffer) Reads the size in bytes of the encoded list from the providedProtonBuffer.Methods inherited from interface org.apache.qpid.protonj2.codec.decoders.PrimitiveTypeDecoder
getTypeCode, isJavaPrimitiveMethods inherited from interface org.apache.qpid.protonj2.codec.StreamTypeDecoder
isArrayType, readArrayElements, readValue, skipValueMethods inherited from interface org.apache.qpid.protonj2.codec.TypeDecoder
isArrayType, readArrayElements, readValue, skipValue
-
Method Details
-
readSize
Reads the size in bytes of 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.- Returns:
- an integer containing the size in bytes of the encoded
List. - Throws:
DecodeException- if an error occurs while reading the encoded size.
-
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.- Returns:
- an integer containing the number of elements in the encoded
List. - Throws:
DecodeException- if an error occurs while reading the encoded element count.
-
readSize
Reads the size in bytes of 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.- Returns:
- an integer containing the size in bytes of the encoded
List. - Throws:
DecodeException- if an error occurs while reading the encoded size.
-
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.- Returns:
- an integer containing the number of elements in the encoded
List. - Throws:
DecodeException- if an error occurs while reading the encoded element count.
-
getTypeClass
- Specified by:
getTypeClassin interfaceStreamTypeDecoder<List>- Specified by:
getTypeClassin interfaceTypeDecoder<List>- Returns:
- the Class that this decoder handles.
-