Skip to content

Instantly share code, notes, and snippets.

@raulh82vlc
Last active June 13, 2020 15:50
Show Gist options
  • Save raulh82vlc/02caefb16dd8028187852be829672ef0 to your computer and use it in GitHub Desktop.
Save raulh82vlc/02caefb16dd8028187852be829672ef0 to your computer and use it in GitHub Desktop.
TweetsRepositoryImpl constructor
@Singleton
class TweetsRepositoryImpl @Inject constructor(
private val networkDataSource: NetworkDataSource,
private val tweetsDBDataSource: TweetDao,
private val mapperTweets: TweetsNetworkToDBMapperList,
private val tokenDBDataSource: TokenDao,
private val queryDBDataSource: QueryDao,
private val tweetQueryJoinDBDataSource: TweetQueryJoinDao,
private val mapperToken: TokenNetworkToDBMapper,
private val taskThreading: TaskThreading
) : TweetsRepository {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment