Created
August 24, 2018 05:04
-
-
Save GauravChaddha1996/335dbbe1d60dc1b1e0104434c2387443 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Singleton | |
class MyDatabase implements Database { | |
@Inject | |
MyDatabase(@Named("ApplicationContext") Context context) { | |
// more code | |
} | |
} | |
/**************************************************************/ | |
@Module | |
class DatabaseModule { | |
MyDatabase dbImpl; | |
@Inject | |
DatabaseModule(MyDatabase myDB) { | |
this.dbImpl = myDB; | |
} | |
@Provides | |
@Singleton | |
Database getDatabase() { | |
return dbImpl; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment