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?
Asked
Active
Viewed 96 times
1

injecto
- 829
- 1
- 10
- 23
-
The CSV is conceptually a list of rows/objects. You should be able to dump such a list to the CSV. – Peter Lawrey Dec 17 '20 at 15:30
1 Answers
2
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 via BytesMarshallable
(not SelfDescribingMarshallable
), see example here

Dmitry Pisklov
- 1,196
- 1
- 6
- 16