c

rescala.core.Core

ReevTicket

abstract class ReevTicket[V] extends DynamicTicket with Result[V]

ReevTicket is given to the Derived reevaluate method and allows to access other reactives. The ticket tracks return values, such as dependencies, the value, and if the value should be propagated. Such usages make it unsuitable as an API for the user, where StaticTicket or DynamicTicket should be used instead.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ReevTicket
  2. Result
  3. DynamicTicket
  4. StaticTicket
  5. InnerTicket
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ReevTicket(initializer: Initializer, _before: V)

Abstract Value Members

  1. abstract def dynamicAccess(reactive: ReSource): Value
    Attributes
    protected
  2. abstract def staticAccess(reactive: ReSource): Value
    Attributes
    protected

Concrete 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. final def activate: Boolean

    True iff outputs must also be reevaluated, false iff the propagation ends here.

    True iff outputs must also be reevaluated, false iff the propagation ends here.

    Definition Classes
    ReevTicketResult
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. final def before: V
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  8. final def depend[A](reactive: Interp[A]): A
    Definition Classes
    DynamicTicket
  9. final def dependStatic[A](reactive: Interp[A]): A
    Definition Classes
    StaticTicket
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. final def forEffect(f: (Observation) ⇒ Unit): Unit

    No-allocation accessor for the effect caused by the reevaluation.

    No-allocation accessor for the effect caused by the reevaluation.

    Definition Classes
    ReevTicketResult
  13. final def forValue(f: (V) ⇒ Unit): Unit

    No-allocation accessor for the optional new value.

    No-allocation accessor for the optional new value.

    Definition Classes
    ReevTicketResult
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  16. val initializer: Initializer
    Definition Classes
    InnerTicket
  17. final def inputs(): Option[Set[ReSource]]

    New input resources.

    New input resources. None for static reactives. Otherwise a list of all static reactives, and accessed dynamic reactives.

    Definition Classes
    ReevTicketResult
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  22. final def reset[NT](nb: NT): ReevTicket[NT]
  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. final def toString(): String
    Definition Classes
    ReevTicket → AnyRef → Any
  25. final def trackDependencies(initial: Set[ReSource]): ReevTicket[V]

    Advises the ticket to track dynamic dependencies.

    Advises the ticket to track dynamic dependencies. The passed initial set of dependencies may be processed as if they were static, and are also returned in the resulting dependencies.

  26. final def trackStatic(): ReevTicket[V]
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def withEffect(v: Observation): ReevTicket[V]
  31. final def withPropagate(p: Boolean): ReevTicket[V]
  32. final def withValue(v: V): ReevTicket[V]

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Result[V]

Inherited from DynamicTicket

Inherited from StaticTicket

Inherited from InnerTicket

Inherited from AnyRef

Inherited from Any

Ungrouped