Inject constructor...

This commit is contained in:
Benoit Marty 2021-04-20 10:22:37 +02:00 committed by Benoit Marty
parent e5d0a8f3d8
commit a5c0c23bae

View file

@ -20,9 +20,10 @@ import kotlinx.coroutines.CancellationException
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.SupervisorJob
import kotlinx.coroutines.cancelChildren
import javax.inject.Inject
@SessionScope
internal class SessionCoroutineScopeHolder {
internal class SessionCoroutineScopeHolder @Inject constructor() {
var scope: CoroutineScope? = null
private set