Skip to content

Instantly share code, notes, and snippets.

@raulh82vlc
Last active February 28, 2021 12:49
Show Gist options
  • Save raulh82vlc/b8eb511914c6c856f67bebe96623e14b to your computer and use it in GitHub Desktop.
Save raulh82vlc/b8eb511914c6c856f67bebe96623e14b to your computer and use it in GitHub Desktop.
SearchTweetPresenter's StateFlow propagation
@ActivityScope
public class SearchTweetPresenter {
@Inject
public SearchTweetPresenter(@NotNull SearchTweetUseCase tweetSearchUseCase) {
this.tweetSearchUseCase = tweetSearchUseCase;
}
// ...
@NotNull
public StateFlow<TweetsUIState> getStateFlow() {
return tweetSearchUseCase.getStateFlow();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment