If I have some code ala
theRequest.getRequestReceiver().receiveFullString((theExchange, str) -> {
...
});
Is it ok to perform a time consuming task w/ the body of the request in the
callback, or is it better to move off the io thread and use
`HttpServerExchange.getInputStream`?
Cheers,
Mike