app / de.uniks.codliners.stock_simulator.repository / QuoteRepository / State

State

sealed class State

The state of a QuoteRepository.

Author
Jan Müller

Types

Done

Indicates that a QuoteRepository's previous task has been completed.

object Done : State

Error

Indicates that a QuoteRepository has encountered an exception.

class Error : State

Idle

Indicates that a QuoteRepository is idle.

object Idle : State

Working

Indicates that a QuoteRepository is currently working.

object Working : State