DefaultDispatcher

@Qualifier
annotation class DefaultDispatcher

Qualifier annotation for injecting the Default coroutine dispatcher.

Use this annotation when you need a dispatcher for CPU-intensive operations like data processing, transformations, or complex calculations.

Usage Example

class DataProcessor @Inject constructor(
@DefaultDispatcher private val dispatcher: CoroutineDispatcher
)

See also