Cmd

object Cmd
Companion:
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Cmd.type

Type members

Classlikes

case class Batch[Msg](cmds: List[Cmd[Msg]]) extends Cmd[Msg]
Companion:
object
object Batch
Companion:
class
case class Combine[Msg](cmd1: Cmd[Msg], cmd2: Cmd[Msg]) extends Cmd[Msg]
final case class Emit[Msg](msg: Msg) extends Cmd[Msg]
case object Empty extends Cmd[Nothing]
final case class Run[Err, Success, Msg](observable: Observable[Err, Success], toMessage: Either[Err, Success] => Msg) extends Cmd[Msg]
Companion:
object
object Run
Companion:
class
final case class RunTask[Err, Success, Msg](task: Task[Err, Success], toMessage: Either[Err, Success] => Msg) extends Cmd[Msg]
final case class SideEffect(task: SideEffect) extends Cmd[Nothing]
Companion:
object
object SideEffect
Companion:
class

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror

The name of the type

The name of the type

Inherited from:
Mirror

Givens

Givens

given given_CanEqual_Cmd_Cmd: CanEqual[Cmd[_], Cmd[_]]