Skip to content

Instantly share code, notes, and snippets.

@rachitmishra
Last active November 7, 2017 19:12
Show Gist options
  • Save rachitmishra/43249a3554a06b5cefd5e80870381181 to your computer and use it in GitHub Desktop.
Save rachitmishra/43249a3554a06b5cefd5e80870381181 to your computer and use it in GitHub Desktop.
dagger-binds
/**
* Using `@Binds` to provide concrete implementations
*/
@Module
abstract class ComputerBinding(private val memorySize: Int,
private val vMemorySize: Int) {
@Binds
abstract fun providesMotherboard(gigabyte: Gigabyte): Motherboard
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment