dimsuz
04/29/2020, 6:12 PMrunBlocking
is not available for common code. But what If I legitimately want to block until coroutine completes? For example I have a ktor websocket and I want to wait until it disconnects before exiting the app. What do people do? Should I create expect/actual runBlocking?John O'Reilly
04/29/2020, 6:16 PMrunBlocking
to work around particular issue ktor has right now (when using 1.3.5-native-mt
coroutines).....have used expect/actual for thatdimsuz
04/29/2020, 6:53 PMJohn O'Reilly
04/29/2020, 6:55 PM