Skip to content

Instantly share code, notes, and snippets.

@smhdk
Last active December 4, 2018 11:36
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save smhdk/4190252a04370d3d73bb67e45fe4cbcd to your computer and use it in GitHub Desktop.
RxJava Skip Operator Example with Kotlin
Observable.just(1, 2, 3, 4, 5, 6, 7, 8)
.skip(3)
.subscribe(object : Observer<Int> {
override fun onComplete() {
println("onComplete")
}
override fun onSubscribe(d: Disposable) {
println("onSubscribe")
}
override fun onNext(t: Int) {
println("onNext: $t")
}
override fun onError(e: Throwable) {
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment