is `singleFromCoroutine` what you’re looking for?
# reaktive
s
is
singleFromCoroutine
what you’re looking for?
o
The other way around?
Copy code
suspend fun <T> Single<T>.toSuspend(): T
s
ah right sorry I misread
I think the actual problem here is that ktor isn’t very good at freezing things
Ktor does not work well in multithreaded environment in Kotlin/Native (it may crash), so please don’t mix Ktor and 
coroutines-interop
from reaktive’s readme
o
Exactly, I'm moving to my own solution without coroutines, using reaktive directly, but I need coroutines to test it
BTW I'm not using Ktor, it looks like something is trying to freeze the EventLoop tho