RxSwift/RxBlocking
2016-08-21 03:44:23 +02:00
..
BlockingObservable.swift Adds BlockingObservable. 2015-10-19 20:28:49 +02:00
BlockingObservable+Operators.swift WIP: Updates code for Xcode 8 beta 6 using the migrator with manual auditing. 2016-08-16 14:00:14 +01:00
Info.plist Release 3.0.0.alpha.1 2016-08-21 03:44:23 +02:00
ObservableConvertibleType+Blocking.swift Fixes @warn_unused_result(message: "http://git.io/rxs.ud") warnings. 2016-07-08 00:04:44 +02:00
README.md Documentation and interface cleanup. 2015-09-08 22:32:09 +02:00
RunLoopLock.swift WIP: Updates code for Xcode 8 beta 6 using the migrator with manual auditing. 2016-08-16 14:00:14 +01:00

RxBlocking

Set of blocking operators for easy unit testing.

Don't use these operators in production apps. These operators are only meant for testing purposes.

extension ObservableType {
    public func toArray() throws -> [E] {}
}

extension ObservableType {
    public func first() throws -> E? {}
}

extension ObservableType {
    public func last() throws -> E? {}
}