I've been reading up on Kotlin co-routines but am not finding the answer to a specific problem.
Say I want to iterate over a collection making an API call for each element (in this particular case pushing a file to Amazon S3). I want these calls to be handled by an async coroutine so as not to block the underlying thread while waiting.
I do not need a return value from the request, only to log exceptions.
How would I create a "fire and forget" async coroutine to make one of these requests?