Skip to content

Instantly share code, notes, and snippets.

View pphilipp's full-sized avatar
🇺🇦
🇮🇱

Pylyp Buhaievskyi pphilipp

🇺🇦
🇮🇱
  • WoodSpoon
  • Israel
View GitHub Profile
@pphilipp
pphilipp / RxJava.md
Created January 3, 2017 20:02 — forked from cesarferreira/RxJava.md
Party tricks with RxJava, RxAndroid & Retrolambda

View Click

Instead of the verbose setOnClickListener:

RxView.clicks(submitButton).subscribe(o -> log("submit button clicked!"));

Filter even numbers

Observable
    .just(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)