elizarov
12/21/2016, 1:20 PMval observable = asyncRx {
var result = ""
for (s in Observable.just("O", "K")) {
result += s
}
result
}
Produces an observable that emits a single String “OK"