Hey everyone, I was wondering if there is a source...
# reaktive
k
Hey everyone, I was wondering if there is a source of documentation other than the docs in the source code?
a
Hello. There are no docs specific to Reaktive. But the library is very similar to RxJava, so you can refer to its docs instead. RxJava GitHub: https://github.com/ReactiveX/RxJava RxJava Wiki: https://github.com/ReactiveX/RxJava/wiki Let me know, if you need any help.
Most important things are mentioned in the Readme: https://github.com/badoo/Reaktive
k
Thanks for the quick reply, I was curious about the
rxjava3-interop
I didn’t find anything there, but I figured out that I need to import both
reaktive
and
rxjava3-interop
into my android app in order to utilize the interop extensions 🙌
Copy code
repository.save(story) // located in commonMain
    .asRxJava3Single()
    .subscribeOn(<http://scheduler.io|scheduler.io>)
    .observeOn(scheduler.main)
    .subscribeBy(
        onSuccess = ::println
    ).addTo(disposeBag)
a
Yes, if you need the interop at all. You can subscribe directly to Reaktive streams.
k
Cool, I’ll take a look at it 🙌