Skip to content

Instantly share code, notes, and snippets.

@muthuraj57
Last active February 18, 2018 15:06
Show Gist options
  • Save muthuraj57/941e4730d5e1da4221741e7d73b7534d to your computer and use it in GitHub Desktop.
Save muthuraj57/941e4730d5e1da4221741e7d73b7534d to your computer and use it in GitHub Desktop.
import android.support.annotation.CallSuper
open class BaseViewModel{
protected val compositeDisposable = CompositeDisposable()
fun onAttach(){}
@CallSuper
fun onDetach(){
compositeDisposable.clear()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment