Skip to content

Instantly share code, notes, and snippets.

@thecodeside
Created August 19, 2018 21:11
Show Gist options
  • Save thecodeside/88bf07f1c8e74ec2cd2f4fd9daf7efba to your computer and use it in GitHub Desktop.
Save thecodeside/88bf07f1c8e74ec2cd2f4fd9daf7efba to your computer and use it in GitHub Desktop.
Observable.just(1,2,3,4)
.map { /*someMapping*/ }
.filter { /*someFilter*/ }
.subscribe(
{ /*onNext*/ },
{ /*onError*/ }
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment