Created
June 4, 2021 13:11
-
-
Save manuelvicnt/67fcec4da3be0e24e4205045677d8d9d 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
@InstallIn(SingletonComponent::class) | |
@Module | |
object CoroutinesScopesModule { | |
@Singleton | |
@Provides | |
fun providesCoroutineScope( | |
@DefaultDispatcher defaultDispatcher: CoroutineDispatcher | |
): CoroutineScope = CoroutineScope(SupervisorJob() + defaultDispatcher) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment