What's the easiest and idiomatic way to have Java interop with coroutines. I'd like to call suspend functions somehow in Java. We use our own internal futures library so ideally we'd like some way to take a suspend function and expose it as the future type. And it would be nice to not have to write two functions (one suspend and one that exposes the future).
Any suggestions? I took a look at examples in the integrations in repository but not sure if they're updated and the most recent recommendations. @elizarov advice?