Created
August 19, 2018 05:50
-
-
Save anitaa1990/aa053d4e511769fefd2ca5b98369f1f3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Test | |
public void testSkipLastObservable() throws InterruptedException { | |
Observable.just("A", "B", "C", "D", "E", "F", "G", "H", "I", "J") | |
.skipLast(4) | |
.subscribe(new Observer<String>() { | |
@Override | |
public void onSubscribe(Disposable d) { | |
} | |
@Override | |
public void onNext(String s) { | |
System.out.println("onNext: " + s); | |
} | |
@Override | |
public void onError(Throwable e) { | |
} | |
@Override | |
public void onComplete() { | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment