ReactiveX is a library for composing asynchronous and event-based programs by using observable sequences.
How to convert Observable to Publisher in RxJava version 2? In the first version we have the https://github.com/ReactiveX/…
java reactive-programming reactivex reactive-streams rx-java2I am trying to use mergeMap in rxjs6 and i am getting this error: Property 'mergeMap' does not exist on …
typescript rxjs reactivex rxjs6I have this piece of code: let appActiveNotifications: [Observable<NSNotification>] = [ NSNotificationCenter.defaultCenter().rx_notification(UIApplicationWillEnterForegroundNotification), NSNotificationCenter.defaultCenter().rx_…
swift rx-swift reactivexIn the new release, reactiveX introduced Single, as a variant of Observable http://reactivex.io/documentation/single.html Which is …
java reactivexI played around with angular2 and got stuck after a while. Using http.get works fine for a single request, …
javascript angular rxjs observable reactivexI have an Observable which is only used for triggering flatMap/map. So I only ever need the Next event …
swift rx-swift reactivexGetting an UndeliverableException while using completable public Completable createBucketWithStorageClassAndLocation() { return Completable.complete() .doFinally(() -> { Bucket bucket = storage.create( BucketInfo.…
java rx-java rx-java2 reactivex rx-java3I'm new to ReactiveX. I was learning it from reading source-code. Everything was so clear but suddenly I got this …
android retrofit rx-java rx-android reactivexIs there an operator that can filter nil? The closest I've come is the solution mentioned here: https://github.com/…
swift rx-swift reactivex