private final AttributeDecoder attributeDecoder;
private MessageReader(final List<MessageMethodDecoder> customMethodDecoders,
final List<AttributeTypeDecoder> customAttributeTypeDecoders) {
this.headerDecoder = new MessageHeaderDecoder(customMethodDecoders);
this.attributeDecoder = new AttributeDecoder(customAttributeTypeDecoders);
}