RxSwift/RxBlocking
2015-08-31 10:59:37 +02:00
..
Info.plist RxBlocking now has its own Info.plist 2015-08-29 13:09:35 +02:00
Observable+Blocking.swift Scheduler revamp (moving towards protocol extensions), internal optimizations, interface cleanup. 2015-08-31 10:59:37 +02:00
README.md Adds blocking operators. 2015-07-12 18:44:56 +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.

public func toArray<E>(source: Observable<E>)
    -> RxResult<[E]> {}

public func first<E>(source: Observable<E>)
    -> RxResult<E?> {}

public func last<E>(source: Observable<E>)
    -> RxResult<E?> {}