Hello, did anyone try to convert kotlin channels i...
# multiplatform
p
Hello, did anyone try to convert kotlin channels into rxswift streams? Or how one should use kotlin channels in swift since the compiler does not expose suspending functions (receive)?
k
I believe this is something what the Arrow team is working on, to abstract away the kotlin corutines
👍 1
but for now I guess you have to go back to a callback system.
a
@kioba do you know whether Arrow will become multiplatform in the near future?
k
there is a discussion around it: https://github.com/arrow-kt/arrow/issues/186 and they started to move the core layer into multiplatform
g
It should be possible to do In general. You can check RxJava coroutines adapter, but for native it may be only single threaded for now
👍 1
a
@kioba this is awesome!