Say I have some custom file format that has some logical format defined. I'd like to "unmarshall" the "objects" from the file. Then how can I use java8 Streams in a parallel fashion to unmarshall the objects?
Is this unreasonable can you explain a more reasonable approach?
Is this not possible? If not is this possible outside of java8, or java9 or scala? Can you provide an example?
[
abc:123,
xy:"yz",
s12:13,
],
...
[
abc:1
s:133,
]
It seems that Parallel message unmarshalling from a token delimited input stream with Java8 stream API is asking something similar but not necessarily from a file perspective. It wasn't clear to me, but I think for that issue it's not possible for java8.