dave08
01/18/2022, 4:10 PM@WorkComponent
for WorkManager workers? Is there a way to make my own? Or is it intended, and there's something different to do for workers?Colton Idle
01/18/2022, 5:20 PMFunkyMuse
01/18/2022, 5:55 PMtrevjones
01/19/2022, 3:16 AMWorkerFactoryModule
is install to Singleton and the `androidx.work.Configuration`` is used to initialize inside of a double check lock to ensure a single instance of the factory is created.
Which should mean that the only safe scope to depend on is Singleton
or unscoped. Scoping the worker itself seems bad given each invocation is going to get its own instance of WorkerParameters
dave08
01/19/2022, 4:07 AM