Skip to content

🔥🔥RxHotness🔥🔥

Pre-release
Pre-release
Compare
Choose a tag to compare
@sergdort sergdort released this 17 Oct 01:14

Added

Changed

  • Replaces rx_* prefix with rx.* extensions. in order to be consistent with RxCocoa extensions
  • Renamed some methods and parameters names to be consistent with Alamofire 4.0 and Swift 3.0 e.g. :
//Before
    _ = manager.rx.JSON(.Get, stringURL)
        .observeOn(MainScheduler.instance)
        .subscribe { print($0) }

//After
_ = manager.rx.json(.get, stringURL)
        .observeOn(MainScheduler.instance)
        .subscribe { print($0) }