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

State

sealed class State

The state of a SymbolRepository.

Author
Jan Müller

Types

Done

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

object Done : State

Error

Indicates that a SymbolRepository has encountered an exception.

class Error : State

Idle

Indicates that a SymbolRepository is idle.

object Idle : State

Working

Indicates that a SymbolRepository is currently working.

object Working : State