Skip to content

Instantly share code, notes, and snippets.

@manuelvicnt
Created June 4, 2021 13:11
Show Gist options
  • Save manuelvicnt/67fcec4da3be0e24e4205045677d8d9d to your computer and use it in GitHub Desktop.
Save manuelvicnt/67fcec4da3be0e24e4205045677d8d9d to your computer and use it in GitHub Desktop.
@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