FlowUseCase

abstract class FlowUseCase<ARGS, T>

Base Flow use case meant to use in CoroutineScopeOwner implementations

Constructors

Link copied to clipboard
fun FlowUseCase()

Functions

Link copied to clipboard
abstract fun build(args: ARGS): Flow<T>

Function which builds Flow instance based on given arguments

Properties

Link copied to clipboard
var job: Job? = null

Job used to hold and cancel existing run of this use case