Skip to content

Instantly share code, notes, and snippets.

@pfmaggi
Created March 31, 2020 17:34
Show Gist options
  • Select an option

  • Save pfmaggi/6dd11dac8606e8d158765ae6709a2575 to your computer and use it in GitHub Desktop.

Select an option

Save pfmaggi/6dd11dac8606e8d158765ae6709a2575 to your computer and use it in GitHub Desktop.
Code for the Medium article: "Customizing WorkManager"
/* Copyright 2020 Google LLC.
SPDX-License-Identifier: Apache-2.0 */
@Singleton
class MyWorkerFactory @Inject constructor(
service: DesignerNewsService
) : DelegatingWorkerFactory() {
init {
addFactory(myWorkerFactory(service))
// Add here other factories that you may need in your application
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment