I need to serialize a list of SelfDescribingMarshallables of the same type as CSV output row by row using Chronicle Wire. But net.openhft.chronicle.wire.WireType#CSV
produces a row for every object field, so it is not a CSV.
Are there any code samples?
How to serialize a list of SelfDescribingMarshallables to CSV
112 views Asked by injecto At
1
WireType#CSV
is currently not in a working condition unfortunately as we haven't had any incentive to support it. However it's still possible to use low-level CSV marshalling viaBytesMarshallable
(notSelfDescribingMarshallable
), see example here