trait Observable[T] extends AnyRef

Observable, as the name suggests, observes values being fired against it. This is the core functionality of Reactify and provides the infrastructure used by Channel, Val, Var, Prop, and Dep.

T

the type of value this Observable will receive

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Observable
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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 and(that: Observable[T]): Observable[T]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def attach(f: (T) ⇒ Unit, priority: Double = Observer.Priority.Normal): Observer[T]

    Attaches a function to observe values fired against this Observable.

    Attaches a function to observe values fired against this Observable.

    f

    function observer

    returns

    the supplied function. This reference is useful for detaching the function later

  7. def changes(observer: ChangeObserver[T]): Observer[T]

    Works similarly to attach, but also references the previous value that was fired.

    Works similarly to attach, but also references the previous value that was fired. This is useful when you need to handle changes, not just new values.

    observer

    the ChangeObserver

    returns

    the observer attached. This can be passed to detach to remove this observer

  8. def clearObservers(): Unit

    Clears all attached observers from this Observable.

  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def collect[R](f: PartialFunction[T, R]): Observable[R]
  11. def detach(observer: Observer[T]): Unit

    Detaches a function from observing this Observable.

    Detaches a function from observing this Observable.

    observer

    function observer that was previously attached

  12. def dispose(): Unit

    Cleans up all cross references in preparation for releasing for GC.

  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def fire(value: T, type: InvocationType): Unit
    Attributes
    protected[reactify]
  17. final def fireRecursive(value: T, type: InvocationType, invocation: Invocation, observers: List[Observer[T]]): Unit
    Attributes
    protected
  18. def future(condition: (T) ⇒ Boolean = (_: T) => true): Future[T]

    Returns a Future[T] that represents the value of the next firing of this Observable.

    Returns a Future[T] that represents the value of the next firing of this Observable.

    condition

    the condition under which the observer will be invoked. Defaults to always return true.

  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def map[R](f: (T) ⇒ R): Observable[R]

    Maps the Observable to another type.

    Maps the Observable to another type.

    R

    the type of the new Observable

    f

    function to handle the mapping from T to R

    returns

    Observable[R]

  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  26. def observe(observer: Observer[T]): Observer[T]

    Direct attachment of a observer.

    Direct attachment of a observer.

    observer

    the observer to attach

    returns

    the same observer supplied

  27. def observers: List[Observer[T]]

    List of all the observers currently observing changes to this Observable.

  28. def on(f: ⇒ Unit, priority: Double = Observer.Priority.Normal): Observer[T]

    Works like attach, but doesn't receive the fired value.

    Works like attach, but doesn't receive the fired value.

    f

    function to invoke on fire

    returns

    observer

  29. def once(f: (T) ⇒ Unit, condition: (T) ⇒ Boolean = (_: T) => true, priority: Double = Observer.Priority.Normal): Observer[T]

    Invokes the observer only one time and then detaches itself.

    Invokes the observer only one time and then detaches itself. If supplied, the condition filters the scenarios in which the observer will be invoked.

    f

    the function observer

    condition

    the condition under which the observer will be invoked. Defaults to always return true.

  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped