Skip to content

Instantly share code, notes, and snippets.

@raulh82vlc
Created October 14, 2020 19:12
Show Gist options
  • Save raulh82vlc/4578ef674726fb80119e5b6e75bd5e0d to your computer and use it in GitHub Desktop.
Save raulh82vlc/4578ef674726fb80119e5b6e75bd5e0d to your computer and use it in GitHub Desktop.
TweetsListUI java destroying any resources
public class TweetsListUI extends ViewUI {
@Inject
SearchViewDelegate viewDelegate;
@Inject
StateFlowHandler stateFlowHandler;
// ...
@Override
public void onDestroy() {
stateFlowHandler.cancel();
viewDelegate.cancel();
super.onDestroy();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment