RetryingJob

data class RetryingJob<T : Any>(val stateFlow: StateFlow<RetryingJob.State<T>>, val producerJob: Job) : Record

Constructors

Link copied to clipboard
constructor(stateFlow: StateFlow<RetryingJob.State<T>>, producerJob: Job)

Types

Link copied to clipboard
sealed interface State<out T : Any>

Properties

Link copied to clipboard
val producerJob: Job
Link copied to clipboard
val stateFlow: StateFlow<RetryingJob.State<T>>

Functions

Link copied to clipboard
Link copied to clipboard
fun getNow(): T?