Skip to content

Instantly share code, notes, and snippets.

@PhilippeBoisney
Last active December 16, 2017 13:22
Show Gist options
  • Save PhilippeBoisney/8587f5f012600cd97fe01f95990c3e0d to your computer and use it in GitHub Desktop.
Save PhilippeBoisney/8587f5f012600cd97fe01f95990c3e0d to your computer and use it in GitHub Desktop.
public class MainFragment extends Fragment {
...
// 1 - Create a disposable
private Disposable disposable;
@Override
public void onDestroy() {
// 2 - Unsubscribe
if (this.disposable != null) this.disposable.dispose();
super.onDestroy();
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment