Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes Observable methods that also have a Scheduler parameter counterpart #43

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ class RxScalaDemo extends JUnitSuite {
}

@Test def timestampExample() {
val timestamped = Observable.interval(100 millis).take(6).timestamp.toBlocking
val timestamped = Observable.interval(100 millis).take(6).timestamp().toBlocking
for ((millis, value) <- timestamped if value > 0) {
println(value + " at t = " + millis)
}
Expand Down Expand Up @@ -1284,7 +1284,7 @@ class RxScalaDemo extends JUnitSuite {
val o = (1 to 10).toObservable
.zip(Observable.interval(100 millis))
.map(_._1)
.timeInterval
.timeInterval()
println(o.toBlocking.toList)
}

Expand Down
Loading