Computable

works.iterative.ui.model.Computable
See theComputable companion trait
object Computable

Attributes

Companion
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
Computable.type

Members list

Type members

Classlikes

case class Computing(start: Instant = ...) extends Computable[Nothing]

The computation is in progress

The computation is in progress

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Computable[Nothing]
class Object
trait Matchable
class Any
Show all
case class Failed(error: UserMessage) extends Computable[Nothing]

The computation failed

The computation failed

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Computable[Nothing]
class Object
trait Matchable
class Any
Show all
case class Ready[Model](model: Model) extends Computable[Model]

The computation is finished and the data is available

The computation is finished and the data is available

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Computable[Model]
class Object
trait Matchable
class Any
Show all
case class Recomputing[Model](start: Instant, model: Model) extends Computable[Model]

The computation is finished and the data is available, but it is being recomputed

The computation is finished and the data is available, but it is being recomputed

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait Computable[Model]
class Object
trait Matchable
class Any
Show all
case object Uninitialized extends Computable[Nothing]

The initial state of a computable model

The initial state of a computable model

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait Computable[Nothing]
class Object
trait Matchable
class Any
Show all
Self type
enum Update[+A]

Attributes

Companion
object
Supertypes
trait Enum
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Known subtypes
class Done[A]
class Failed
object Update

Attributes

Companion
enum
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type
Update.type
object given_Covariant_Computable extends Covariant[Computable]

Attributes

Supertypes
trait Covariant[Computable]
trait Invariant[Computable]
trait CovariantSubset[Computable, AnyType]
class Object
trait Matchable
class Any
Show all
Self type
object given_IdentityFlatten_Computable extends IdentityFlatten[Computable]

Attributes

Supertypes
trait IdentityFlatten[Computable]
trait AssociativeFlatten[Computable]
class Object
trait Matchable
class Any
Self type

Inherited and Abstract types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Extensions

Extensions

extension [A](c: Computable[A])
def toOption: Option[A]