RxSwift/RxBlocking
2016-10-16 20:02:40 +02:00
..
Platform Renames resourceCount to Resources.count. 2016-10-15 22:17:47 +02:00
BlockingObservable.swift Pedantic changes. 2016-10-15 14:38:22 +02:00
BlockingObservable+Operators.swift Pedantic changes. 2016-10-15 14:38:22 +02:00
Info.plist Release 3.0.0-rc.1 2016-10-16 20:02:40 +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 Compilation issues. 2016-10-16 01:55:08 +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? {}
}