Kotlin Interface
interface FailureAwareSessionStore : SessionStore
abstract suspend fun clear()
abstract fun hasFailed(): Boolean
abstract suspend fun token(): AuthToken?
abstract suspend fun update(token: AuthToken?)
Was this page helpful?