Created
June 4, 2021 13:09
-
-
Save manuelvicnt/b3fd32aa823a3df79e25f4d0c1c31b1a 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
// 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