CalculusLike

rescala.scheduler.CalculusLike

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Concise view

Type members

Classlikes

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
case class FTransaction(initializer: of[State]) extends Transaction

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
case class Propagation(active: Set[of[State]], processed: Set[of[State]], knownReactives: Set[of[State]], transaction: FTransaction)

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
object Reevaluate

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
final class SimpleCreation() extends Initializer

The main task of the initializer is to handle creation of reactives, especially during an ongoing propagation. The formalization does not support this, to keep the complexity of the proofs in check.

The main task of the initializer is to handle creation of reactives, especially during an ongoing propagation. The formalization does not support this, to keep the complexity of the proofs in check.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
class StoreValue[V](var value: V)

The formalization uses a per device store mapping reactives to their inputs, values, and operator. The operator is already handled by the common implementation, so we keep the value and inputs. The store mapping does not exist as a single object, but instead each reactive has this state.

The formalization uses a per device store mapping reactives to their inputs, values, and operator. The operator is already handled by the common implementation, so we keep the value and inputs. The store mapping does not exist as a single object, but instead each reactive has this state.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Types

type State[V] = StoreValue[V]