Skip to content

Instantly share code, notes, and snippets.

@kmdupr33
Created March 24, 2015 23:24
Show Gist options
  • Save kmdupr33/338f863a42f53b736bdd to your computer and use it in GitHub Desktop.
Save kmdupr33/338f863a42f53b736bdd to your computer and use it in GitHub Desktop.
Show the straightforward way to avoid leaking your subscriber
public class MainActivity extends ActionBarActivity implements View.OnClickListener {
...
@Override
protected void onDestroy() {
super.onDestroy();
mSubscribtion.unsubscribe();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment