Sequence

data class Sequence(val actions: List<Action>) : Action

Actions run in order against the same working state; each sees all earlier writes.

Constructors

Link copied to clipboard
constructor(actions: List<Action>)

Properties

Link copied to clipboard