Would there be a way to explicitly specify a retur...
# coroutines
d
Would there be a way to explicitly specify a return statement in
runBlocking<[not Unit]>
? I seem to be getting
return statement not allowed here
.
Copy code
override fun getRequest(): Request = runBlocking<Request>
    {
        return requests.receive()
    }    // ^