Skip to content

Instantly share code, notes, and snippets.

@manuelvicnt
Created June 4, 2021 13:09
Show Gist options
  • Save manuelvicnt/b3fd32aa823a3df79e25f4d0c1c31b1a to your computer and use it in GitHub Desktop.
Save manuelvicnt/b3fd32aa823a3df79e25f4d0c1c31b1a to your computer and use it in GitHub Desktop.
// CoroutinesQualifiers.kt file
@Retention(AnnotationRetention.RUNTIME)
@Qualifier
annotation class DefaultDispatcher
@Retention(AnnotationRetention.RUNTIME)
@Qualifier
annotation class IoDispatcher
@Retention(AnnotationRetention.RUNTIME)
@Qualifier
annotation class MainDispatcher
@Retention(AnnotationRetention.BINARY)
@Qualifier
annotation class MainImmediateDispatcher
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment