SideboardLine

Types

Link copied to clipboard
open class Changing(flow: Flow<Component>) : SideboardLine

Adds a line which changes whenever a new Component is emitted to the flow.

Link copied to clipboard
class Static(text: Component) : SideboardLine

A sideboard line which always displays the same text.

Link copied to clipboard
open class Updatable(initial: Component? = null) : SideboardLine

An updatable sideboard line, which might have an initial content, and can be changed at any time.

Link copied to clipboard
open class UpdatingPeriodically(period: Duration, updater: suspend () -> Component) : SideboardLine

A sideboard line which displays the result of updater, which will be called periodically by the given Duration of period.

Properties

Link copied to clipboard
abstract val textFlow: Flow<Component>

The internal text flow, which the sideboard collects in order to receive line updates.