Packages

c

com.raquo.airstream.state

DerivedVarSignal

class DerivedVarSignal[A, B] extends MapSignal[A, B] with OwnedSignal[B]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DerivedVarSignal
  2. OwnedSignal
  3. StrictSignal
  4. MapSignal
  5. InternalTryObserver
  6. SingleParentObservable
  7. InternalObserver
  8. WritableSignal
  9. WritableObservable
  10. Signal
  11. SignalSource
  12. Observable
  13. BaseObservable
  14. Named
  15. Source
  16. AnyRef
  17. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new DerivedVarSignal(parent: Var[A], zoomIn: (A) => B, owner: 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 addExternalObserver(observer: Observer[B], owner: Owner): Subscription

    Subscribe an external observer to this observable

    Subscribe an external observer to this observable

    Attributes
    protected[this]
    Definition Classes
    WritableObservableBaseObservable
  5. def addInternalObserver(observer: InternalObserver[B]): Unit

    Child observable should call this method on its parents when it is started.

    Child observable should call this method on its parents when it is started. This observable calls onStart if this action has given it its first observer (internal or external).

    Attributes
    protected[airstream]
    Definition Classes
    WritableObservableBaseObservable
  6. def addObserver(observer: Observer[B])(implicit owner: Owner): Subscription

    Subscribe an external observer to this observable

    Subscribe an external observer to this observable

    Definition Classes
    WritableObservableBaseObservable
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def changes: EventStream[B]
    Definition Classes
    Signal
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  10. def compose[B](operator: (Signal[B]) => Signal[B]): Signal[B]

    operator

    Note: Must not throw!

    Definition Classes
    Signal
  11. def composeAll[B](changesOperator: (EventStream[B]) => EventStream[B], initialOperator: (Try[B]) => Try[B]): Signal[B]

    changesOperator

    Note: Must not throw!

    initialOperator

    Note: Must not throw!

    Definition Classes
    Signal
  12. def composeChanges[AA >: B](operator: (EventStream[B]) => EventStream[AA]): Signal[AA]

    operator

    Note: Must not throw!

    Definition Classes
    Signal
  13. def debugWith(debugger: Debugger[B]): Signal[B]

    See also debug methods in com.raquo.airstream.debug.DebuggableObservable

    Definition Classes
    SignalBaseObservable
  14. def defaultDisplayName: String

    This is the method that subclasses override to preserve the user's ability to set custom display names.

    This is the method that subclasses override to preserve the user's ability to set custom display names.

    Attributes
    protected
    Definition Classes
    Named
  15. final def displayName: String
    Definition Classes
    Named
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  18. val externalObservers: ObserverList[Observer[B]]

    Note: Observer can be added more than once to an Observable.

    Note: Observer can be added more than once to an Observable. If so, it will observe each event as many times as it was added.

    Attributes
    protected
    Definition Classes
    WritableObservable
  19. final def fireError(nextError: Throwable, transaction: Transaction): Unit
    Attributes
    protected
    Definition Classes
    WritableSignalWritableObservable
  20. def fireTry(nextValue: Try[B], transaction: Transaction): Unit

    Signal propagates only if its value has changed

    Signal propagates only if its value has changed

    Attributes
    protected
    Definition Classes
    WritableSignalWritableObservable
  21. final def fireValue(nextValue: B, transaction: Transaction): Unit
    Attributes
    protected
    Definition Classes
    WritableSignalWritableObservable
  22. def flatMap[B, Inner[_], Output[+_] <: Observable[_]](compose: (B) => Inner[B])(implicit strategy: FlattenStrategy[[+_]Signal[_], Inner, Output]): Output[B]

    compose

    Note: guarded against exceptions

    Definition Classes
    BaseObservable
    Annotations
    @inline()
  23. def foldLeft[B](makeInitial: (B) => B)(fn: (B, B) => B): Signal[B]

    makeInitial

    Note: guarded against exceptions

    fn

    Note: guarded against exceptions

    Definition Classes
    Signal
  24. def foldLeftRecover[B](makeInitial: (Try[B]) => Try[B])(fn: (Try[B], Try[B]) => Try[B]): Signal[B]

    makeInitial

    currentParentValue => initialValue Note: must not throw

    fn

    (currentValue, nextParentValue) => nextValue

    Definition Classes
    Signal
  25. def foreach(onNext: (B) => Unit)(implicit owner: Owner): Subscription

    Create an external observer from a function and subscribe it to this observable.

    Create an external observer from a function and subscribe it to this observable.

    Note: since you won't have a reference to the observer, you will need to call Subscription.kill() to unsubscribe

    Definition Classes
    BaseObservable
  26. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  27. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. def initialValue: Try[B]

    Evaluate initial value of this Signal.

    Evaluate initial value of this Signal. This method must only be called once, when this value is first needed. You should override this method as def (no val or lazy val) to avoid holding a reference to the initial value beyond the duration of its relevance.

    Attributes
    protected[this]
    Definition Classes
    MapSignalWritableSignal
  29. val internalObservers: ObserverList[InternalObserver[B]]

    Note: This is enforced to be a Set outside of the type system #performance

    Note: This is enforced to be a Set outside of the type system #performance

    Attributes
    protected
    Definition Classes
    WritableObservable
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. def isStarted: Boolean
    Attributes
    protected[state]
    Definition Classes
    DerivedVarSignalBaseObservable
  32. def killOriginalSubscription(): Unit

    This only kills the subscription, but this signal might also have other listeners

    This only kills the subscription, but this signal might also have other listeners

    Definition Classes
    OwnedSignal
  33. def map[B](project: (B) => B): Signal[B]

    project

    Note: guarded against exceptions

    Definition Classes
    SignalBaseObservable
  34. def mapTo[B](value: => B): Signal[B]

    value is passed by name, so it will be evaluated whenever the Observable fires.

    value is passed by name, so it will be evaluated whenever the Observable fires. Use it to sample mutable values (e.g. myInput.ref.value in Laminar).

    See also: mapToStrict

    value

    Note: guarded against exceptions

    Definition Classes
    BaseObservable
  35. def mapToStrict[B](value: B): Signal[B]

    value is evaluated strictly, only once, when this method is called.

    value is evaluated strictly, only once, when this method is called.

    See also: mapTo

    Definition Classes
    BaseObservable
  36. val maybeDisplayName: UndefOr[String]

    This name should identify the instance (observable or observer) uniquely enough for your purposes.

    This name should identify the instance (observable or observer) uniquely enough for your purposes. You can read / write it to simplify debugging. Airstream uses this in debugLog* methods. In the future, we will expand on this. #TODO[Debug] We don't use this to its full potential yet.

    Attributes
    protected[this]
    Definition Classes
    Named
  37. val maybeLastSeenCurrentValue: UndefOr[Try[B]]
    Attributes
    protected
    Definition Classes
    WritableSignal
  38. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  39. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  40. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  41. def now(): B

    Get the signal's current value

    Get the signal's current value

    Definition Classes
    StrictSignalSignal
    Exceptions thrown

    the signal's error if its current value is an error

  42. def numAllObservers: Int

    Total number of internal and external observers

    Total number of internal and external observers

    Attributes
    protected
    Definition Classes
    WritableObservableBaseObservable
  43. def observe(implicit owner: Owner): OwnedSignal[B]

    Add a noop observer to this signal to ensure that it's started.

    Add a noop observer to this signal to ensure that it's started. This lets you access .now and .tryNow on the resulting StrictSignal.

    You can use myStream.toWeakSignal.observe.tryNow() to read the last emitted value from event streams just as well.

    Definition Classes
    Signal
  44. def onAddedExternalObserver(observer: Observer[B]): Unit
    Attributes
    protected
    Definition Classes
    SignalBaseObservable
  45. final def onError(nextError: Throwable, transaction: Transaction): Unit

    Must not throw

    Must not throw

    Attributes
    protected
    Definition Classes
    InternalTryObserverInternalObserver
  46. final def onNext(nextValue: A, transaction: Transaction): Unit

    Must not throw

    Must not throw

    Attributes
    protected
    Definition Classes
    InternalTryObserverInternalObserver
  47. def onStart(): Unit

    This method is fired when this observable starts working (listening for parent events and/or firing its own events), that is, when it gets its first Observer (internal or external).

    This method is fired when this observable starts working (listening for parent events and/or firing its own events), that is, when it gets its first Observer (internal or external).

    onStart can potentially be called multiple times, the second time being after it has stopped (see onStop).

    Attributes
    protected[this]
    Definition Classes
    SingleParentObservableBaseObservable
  48. def onStop(): Unit

    This method is fired when this observable stops working (listening for parent events and/or firing its own events), that is, when it loses its last Observer (internal or external).

    This method is fired when this observable stops working (listening for parent events and/or firing its own events), that is, when it loses its last Observer (internal or external).

    onStop can potentially be called multiple times, the second time being after it has started again (see onStart).

    Attributes
    protected[this]
    Definition Classes
    SingleParentObservableBaseObservable
  49. def onTry(nextParentValue: Try[A], transaction: Transaction): Unit

    Must not throw

    Must not throw

    Attributes
    protected
    Definition Classes
    DerivedVarSignalMapSignalInternalObserver
  50. val parent: Signal[A]
    Attributes
    protected[this]
    Definition Classes
    MapSignalSingleParentObservable
  51. val project: (A) => B
    Attributes
    protected[this]
    Definition Classes
    MapSignal
  52. implicit def protectedAccessEvidence: Protected
    Attributes
    protected
    Definition Classes
    BaseObservable
    Annotations
    @inline()
  53. def recover[B >: B](pf: PartialFunction[Throwable, Option[B]]): Signal[B]

    pf

    Note: guarded against exceptions

    Definition Classes
    SignalBaseObservable
  54. val recover: Option[PartialFunction[Throwable, Option[B]]]
    Attributes
    protected[this]
    Definition Classes
    MapSignal
  55. def recoverIgnoreErrors: Signal[B]
    Definition Classes
    BaseObservable
  56. def recoverToTry: Signal[Try[B]]

    Convert this to an observable that emits Failure(err) instead of erroring

    Convert this to an observable that emits Failure(err) instead of erroring

    Definition Classes
    SignalBaseObservable
  57. def removeExternalObserverNow(observer: Observer[B]): Unit
    Attributes
    protected[airstream]
    Definition Classes
    WritableObservableBaseObservable
  58. def removeInternalObserverNow(observer: InternalObserver[B]): Unit

    Child observable should call Transaction.removeInternalObserver(parent, childInternalObserver) when it is stopped.

    Child observable should call Transaction.removeInternalObserver(parent, childInternalObserver) when it is stopped. This observable calls onStop if this action has removed its last observer (internal or external).

    Attributes
    protected[airstream]
    Definition Classes
    WritableObservableBaseObservable
  59. def setCurrentValue(newValue: Try[B]): Unit
    Attributes
    protected
    Definition Classes
    WritableSignal
  60. def setDisplayName(name: String): DerivedVarSignal.this.type

    Set the display name for this instance (observable or observer).

    Set the display name for this instance (observable or observer). - This method modifies the instance and returns this. It does not create a new instance. - New name you set will override the previous name, if any. This might change in the future. For the sake of sanity, don't call this more than once for the same instance. - If display name is set, toString will output it instead of the standard type@hashcode string

    Definition Classes
    Named
  61. val subscription: Subscription
    Attributes
    protected[this]
    Definition Classes
    DerivedVarSignalOwnedSignal
  62. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  63. def toObservable: Signal[B]
    Definition Classes
    SignalSignalSourceSource
  64. def toSignalIfStream[B >: B](ifStream: (EventStream[B]) => Signal[B]): Signal[B]
    Definition Classes
    BaseObservable
  65. def toStreamIfSignal[B >: B](ifSignal: (Signal[B]) => EventStream[B]): EventStream[B]
    Definition Classes
    BaseObservable
  66. final def toString(): String

    Override defaultDisplayName instead of this, if you need to.

    Override defaultDisplayName instead of this, if you need to.

    Definition Classes
    Named → AnyRef → Any
  67. def toWeakSignal: Signal[Option[B]]

    Convert this observable to a signal of Option[A].

    Convert this observable to a signal of Option[A]. If it is a stream, set initial value to None.

    Definition Classes
    BaseObservable
  68. val topoRank: Int

    Note: Use Protected.topoRank(observable) to read another observable's topoRank if needed

    Note: Use Protected.topoRank(observable) to read another observable's topoRank if needed

    Attributes
    protected
    Definition Classes
    MapSignalBaseObservable
  69. def tryNow(): Try[B]

    Get the signal's current value

    Get the signal's current value

    Definition Classes
    StrictSignalSignal
  70. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  71. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  72. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

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

Inherited from OwnedSignal[B]

Inherited from StrictSignal[B]

Inherited from MapSignal[A, B]

Inherited from InternalTryObserver[A]

Inherited from SingleParentObservable[A, B]

Inherited from InternalObserver[A]

Inherited from WritableSignal[B]

Inherited from WritableObservable[B]

Inherited from Signal[B]

Inherited from SignalSource[B]

Inherited from Observable[B]

Inherited from BaseObservable[[+_]Signal[_], B]

Inherited from Named

Inherited from Source[B]

Inherited from AnyRef

Inherited from Any

Ungrouped