Packages

c

rx.Var

Isomorphic

class Isomorphic[T, S] extends ForwardRxVar[T, S]

Self Type
Isomorphic[T, S]
Linear Supertypes
ForwardRxVar[T, S], Var[S], Rx[S], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Isomorphic
  2. ForwardRxVar
  3. Var
  4. Rx
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Isomorphic(base: Var[T], read: (T) ⇒ S, write: (S) ⇒ T)(implicit ownerCtx: Owner)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply()(implicit ctx: Data): S

    Get the current value of this Rx and listen for updates.

    Get the current value of this Rx and listen for updates. Only callable with an Rx{...} block (or equivalently when an implicit Ctx.Data is available), and the contextual/implicit Rx is the one that will update when the value of this Rx changes.

    Definition Classes
    Rx
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val base: Var[T]
    Attributes
    protected
    Definition Classes
    IsomorphicForwardRxVar
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def kill(): Unit

    Kills this Rx; stop listening for updates, and release all references to other Rxs.

    Kills this Rx; stop listening for updates, and release all references to other Rxs. This lets the Rx be garbage-collected, since otherwise even when not-in-use it will continue to be referenced by the other Rxs it depends on.

    Definition Classes
    ForwardRxVarVarRx
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def now: S

    Get the current value of this Rx at this very moment, without listening for updates

    Get the current value of this Rx at this very moment, without listening for updates

    Definition Classes
    ForwardRxVarRx
    Annotations
    @inline()
  19. final def propagate(): Unit

    Force trigger/notifications of any downstream Rxs, without changing the current value

    Force trigger/notifications of any downstream Rxs, without changing the current value

    Definition Classes
    Rx
    Annotations
    @inline()
  20. final def recalc(): Unit

    Force this Rx to recompute (whether or not any upstream Rxs changed) and propagate changes downstream.

    Force this Rx to recompute (whether or not any upstream Rxs changed) and propagate changes downstream. Does nothing if the Rx has been killed

    Definition Classes
    VarRx
    Annotations
    @inline()
  21. val rx: Dynamic[S]
    Attributes
    protected
    Definition Classes
    IsomorphicForwardRxVar
  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    Var → AnyRef → Any
  24. final def toTry: Try[S]
    Definition Classes
    VarRx
    Annotations
    @inline()
  25. final def trigger(f: (S) ⇒ Unit)(implicit ownerCtx: Owner): Obs
    Definition Classes
    Rx
    Annotations
    @inline()
  26. def trigger(thunk: ⇒ Unit)(implicit ownerCtx: Owner): Obs

    Run the given function immediately, and again whenever this Rxs value changes.

    Run the given function immediately, and again whenever this Rxs value changes. Returns an Obs if you want to keep track of this trigger or kill it later.

    Definition Classes
    Rx
  27. final def triggerLater(f: (S) ⇒ Unit)(implicit ownerCtx: Owner): Obs
    Definition Classes
    Rx
    Annotations
    @inline()
  28. def triggerLater(thunk: ⇒ Unit)(implicit ownerCtx: Owner): Obs

    Run the given function whenever this Rxs value changes, but not immediately.

    Run the given function whenever this Rxs value changes, but not immediately. Returns an Obs if you want to keep track of this trigger or kill it later.

    Definition Classes
    Rx
  29. def update(newValue: S): Unit
    Definition Classes
    IsomorphicVar
  30. final def update(f: (S) ⇒ S): Unit
    Definition Classes
    Var
    Annotations
    @inline()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from ForwardRxVar[T, S]

Inherited from Var[S]

Inherited from Rx[S]

Inherited from AnyRef

Inherited from Any

Ungrouped