RxSwift/RxBlocking
Krunoslav Zaher d377f61794 Linux fixes.
2015-12-25 23:33:25 +01:00
..
BlockingObservable.swift Adds BlockingObservable. 2015-10-19 20:28:49 +02:00
BlockingObservable+Operators.swift Adds CurrentThreadScheduler to blocking operators. 2015-11-16 00:11:30 +01:00
Info.plist Updates bundle version to 2.0.0. 2015-11-02 10:36:14 +01:00
ObservableConvertibleType+Blocking.swift Adds unused warnings. 2015-10-19 21:59:31 +02:00
README.md Documentation and interface cleanup. 2015-09-08 22:32:09 +02:00
RunLoopLock.swift Linux fixes. 2015-12-25 23:33:25 +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? {}
}