Top "Rx-swift" questions

RxSwift's intention is to enable easy composition of asynchronous operations and event/data streams.

RxSwift, how do I chain different observables

I am still a beginner in Reactive programming, and RxSwift in general. I want to chain two different operation. In …

ios swift alamofire rx-swift
Combining Alamofire and RxSwift

I have this custom implementation of Alamofire: protocol HTTPProtocol: class { typealias RequestType typealias RespondType func doRequest(requestData: RequestType) -> …

ios swift mvvm rx-swift
Rxswift observable bind(to:) vs subscribe(onNext:)

Sorry. I am confused what is binding in Rxswift. As far as I know, observable won't produce value unless a …

swift rx-swift
RxSwift - Debounce/Throttle "inverse"

Let's say I have an instant messaging app that plays a beep sound every time a message arrives. I want …

ios swift rx-swift
How to observe array property changes in RxSwift

Here is my class: class ViewController: UIViewController { var myArray : NSArray! } I want to fire an event every time myArray points …

swift key-value-observing rx-swift
Does the order of subscribeOn and observeOn matter?

I'm a little bit confused about the order you can call the subscribeOn and observeOn methods on observables. I read …

swift multithreading rx-swift
How to map RxSwift Observable and Result

I have a quick question: I have a network request that returns Observable<Result<String, RequestError>>, …

ios swift rx-swift reactivex
Is there a preferred type for an Observable with no need for a value in Next events?

I have an Observable which is only used for triggering flatMap/map. So I only ever need the Next event …

swift rx-swift reactivex
Return a completable in RxSwift without using a create block

I have a Completable being returned from a simple function. This is not an async call, so I just need …

ios swift rx-swift
How to manually send next signal to a observable in RxSwift?

I create an observable using the following code: let disposeBag = DisposeBag() let myJust = { (element: String) -> Observable<String&…

ios swift reactive-programming rx-swift