Skip to content

Releases: RxSwiftCommunity/RxAlamofire

🔥🔥RxHotness🔥🔥

17 Oct 01:14
Compare
Choose a tag to compare
Pre-release

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) }