Skip to content

Instantly share code, notes, and snippets.

@patrykpoborca
Last active February 4, 2016 20:51
Show Gist options
  • Save patrykpoborca/f1a48f63ea03e5d03752 to your computer and use it in GitHub Desktop.
Save patrykpoborca/f1a48f63ea03e5d03752 to your computer and use it in GitHub Desktop.
var obs = getObservable()
.filter { s -> someFilter(s) };
when(exteriorState){
STATE_1 -> obs = obs.debounce(3, TimeUnit.SECONDS)
else -> obs = obs.skip(3, TimeUnit.SECONDS)
}
obs.subscribe{
//do on sub things
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment