Created
January 13, 2020 10:54
-
-
Save ubarua123/1ed6ad083a58969f7d88b6995089dfff to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@Subcomponent(modules = WorkerBindingModule.class) | |
public interface WorkManagerFactorySubComponent { | |
Map<Class<? extends RxWorker>, Provider<RxWorker>> getWorkerMap(); | |
@Subcomponent.Builder | |
interface Builder { | |
@BindsInstance | |
Builder parameters(WorkerParameters parameters); | |
WorkManagerFactorySubComponent build(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment