CollectStatus

sealed class CollectStatus

The current state of collecting Kotlin Flow

Inheritors

Types

Link copied to clipboard
data object Cancelled : CollectStatus

Flow collector has been cancelled

Link copied to clipboard

Flow hasn't been finished yet and is being collected

Link copied to clipboard
data object Completed : CollectStatus

Flow has been completed successfully

Link copied to clipboard
data class Failed(val exception: Exception) : CollectStatus

Flow collector has been failed with exception