Created
March 31, 2020 18:09
-
-
Save pfmaggi/2ea838f5525840d83a00556a1db341dc to your computer and use it in GitHub Desktop.
Code for the Medium article: "Customizing WorkManager"
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
/* Copyright 2019 Google LLC. | |
SPDX-License-Identifier: Apache-2.0 */ | |
@Singleton | |
class IoschedWorkerFactory @Inject constructor( | |
refreshConferenceDataUseCase: RefreshConferenceDataUseCase | |
) : DelegatingWorkerFactory() { | |
init { | |
addFactory(ConferenceDataWorkerFactory(refreshConferenceDataUseCase)) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment