Skip to content

Instantly share code, notes, and snippets.

@DenisBronx
Created May 19, 2020 07:56
Show Gist options
  • Save DenisBronx/064d580908a37cb8341204c22e5e8e9d to your computer and use it in GitHub Desktop.
Save DenisBronx/064d580908a37cb8341204c22e5e8e9d to your computer and use it in GitHub Desktop.
class MyViewModel(
private val getTransactionUseCase: GetTransactionUseCase
) {
fun doSomething() {
getTransactionUseCase.execute().subscribeBy {
//do something with the result
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment