RxSwift/RxBlocking
2016-10-09 19:13:50 +02:00
..
BlockingObservable.swift Adds timeout parameter to blocking observable sequence. 2016-08-28 23:34:40 +02:00
BlockingObservable+Operators.swift Subscription disposables now only create strong references to sinks until being disposed or sequence terminates. #573 2016-09-25 23:36:39 +02:00
Info.plist Release 3.0.0-beta.2 2016-10-04 01:00:23 +02:00
ObservableConvertibleType+Blocking.swift Adds timeout parameter to blocking observable sequence. 2016-08-28 23:34:40 +02:00
README.md Documentation and interface cleanup. 2015-09-08 22:32:09 +02:00
RunLoopLock.swift Linux cleanup. 2016-10-09 19:13:50 +02: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? {}
}