Packages

trait VarR[T <: Txn[T], A] extends Var[T, A]

A mutable cell view representing serializable elements.

Linear Supertypes
Var[T, A], Sink[T, A], CellView[T, A], Source[T, A], Observable[T, A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. VarR
  2. Var
  3. Sink
  4. CellView
  5. Source
  6. Observable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type Repr

Abstract Value Members

  1. abstract def apply()(implicit tx: T): A
    Definition Classes
    Source
  2. implicit abstract def format: TFormat[T, Repr]
  3. abstract def lift(value: A)(implicit tx: T): Repr
  4. abstract def react(fun: (T) => (A) => Unit)(implicit tx: T): Disposable[T]

    Registers a live observer with this observable.

    Registers a live observer with this observable. The method is called with the observing function which receives the observable's update message of type A, and the method generates an opaque Disposable instance, which may be used to remove the observer eventually (through the dispose method).

    Definition Classes
    Observable
  5. abstract def repr(implicit tx: T): Repr
  6. abstract def repr_=(value: Repr)(implicit tx: T): Unit
  7. abstract def update(value: A)(implicit tx: T): Unit
    Definition Classes
    Sink