What's parallelizable is multiple json transforms working at the same time (multiple requests to a REST service with json payload for request and response). These requests/repsonses work with async byte streams and suspend on network latency, which would free up threads when data is being waited for so that other processing can be done. It would be even more interesting in larger JsonArray responses if Klaxon would return a Channel of objects already parsed.
Maybe it would have to work with some kind of buffer, so that the context switch doesn't happen for every few bytes.
I'm not sure how much this would all gain, I was wondering if tesing this somehow is feasable with Klaxon's current structure?