RxSwift/RxBlocking
2016-02-14 12:23:19 -08:00
..
BlockingObservable.swift Adds BlockingObservable. 2015-10-19 20:28:49 +02:00
BlockingObservable+Operators.swift Fixes problem with RunLoopLock calling run loop stop multiple times. 2016-02-05 15:36:34 +01:00
Info.plist Updates bundle version to 2.0.0. 2015-11-02 10:36:14 +01:00
ObservableConvertibleType+Blocking.swift Standardizes header format. 2015-12-29 16:56:21 +01:00
README.md Documentation and interface cleanup. 2015-09-08 22:32:09 +02:00
RunLoopLock.swift Fixes compilation on Linux. 2016-02-14 12:23:19 -08: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? {}
}