RxSwift/RxBlocking
2017-04-09 23:31:54 +02:00
..
Platform [Fix] Linux. 2017-01-21 22:05:28 +01:00
BlockingObservable.swift Removes unnecessary import Foundation statements. 2017-01-29 03:05:26 +01:00
BlockingObservable+Operators.swift Removes unnecessary import Foundation statements. 2017-01-29 03:05:26 +01:00
Info.plist Fixes podspecs. 2017-04-09 23:31:54 +02:00
ObservableConvertibleType+Blocking.swift Removes unnecessary import Foundation statements. 2017-01-29 03:05:26 +01:00
README.md Documentation and interface cleanup. 2015-09-08 22:32:09 +02:00
Resources.swift Removes unnecessary import Foundation statements. 2017-01-29 03:05:26 +01:00
RunLoopLock.swift Removes unnecessary import Foundation statements. 2017-01-29 03:05:26 +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? {}
}