Packages

t

com.raquo.airstream.common

SingleParentObservable

trait SingleParentObservable[I, +O] extends Observable[O] with InternalObserver[I]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SingleParentObservable
  2. InternalObserver
  3. Observable
  4. Named
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type Self[+T] <: Observable[T]

    Basic type for this observable.

    Basic type for this observable. Could be EventStream or Signal

    Definition Classes
    Observable

Abstract Value Members

  1. abstract def debugWith(debugger: Debugger[O]): Self[O]

    Create a new observable that listens to this one and has a debugger attached.

    Create a new observable that listens to this one and has a debugger attached.

    Use the resulting observable in place of the original observable in your code. See docs for details.

    There are more convenient methods available implicitly from DebuggableObservable and DebuggableSignal, such as debugLog(), debugSpyEvents(), etc.

    Definition Classes
    Observable
  2. abstract def fireError(nextError: Throwable, transaction: Transaction): Unit
    Attributes
    protected[this]
    Definition Classes
    Observable
  3. abstract def fireTry(nextValue: Try[O], transaction: Transaction): Unit
    Attributes
    protected[this]
    Definition Classes
    Observable
  4. abstract def fireValue(nextValue: O, transaction: Transaction): Unit
    Attributes
    protected[this]
    Definition Classes
    Observable
  5. abstract def map[B](project: (O) => B): Self[B]

    project

    Note: guarded against exceptions

    Definition Classes
    Observable
  6. abstract def onError(nextError: Throwable, transaction: Transaction): Unit

    Must not throw

    Must not throw

    Attributes
    protected[airstream]
    Definition Classes
    InternalObserver
  7. abstract def onNext(nextValue: I, transaction: Transaction): Unit

    Must not throw

    Must not throw

    Attributes
    protected[airstream]
    Definition Classes
    InternalObserver
  8. abstract def onTry(nextValue: Try[I], transaction: Transaction): Unit

    Must not throw

    Must not throw

    Attributes
    protected[airstream]
    Definition Classes
    InternalObserver
  9. abstract val parent: Observable[I]
    Attributes
    protected[this]
  10. abstract def recover[B >: O](pf: PartialFunction[Throwable, Option[B]]): Self[B]

    pf

    Note: guarded against exceptions

    Definition Classes
    Observable
  11. abstract def recoverToTry: Self[Try[O]]

    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
    Observable
  12. abstract val topoRank: Int

    When subclassing Observable **outside of com.raquo.airstream package**, just make this field public:

    When subclassing Observable **outside of com.raquo.airstream package**, just make this field public:

    override val topoRank: Int = ???

    "protected[airstream]" will allow this. See https://github.com/raquo/Airstream/issues/37

    Attributes
    protected[airstream]
    Definition Classes
    Observable

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. def addInternalObserver(observer: InternalObserver[O]): 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
    Observable
  5. def addObserver(observer: Observer[O])(implicit owner: Owner): Subscription

    Subscribe an external observer to this observable

    Subscribe an external observer to this observable

    Definition Classes
    Observable
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. 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
  9. final def displayName: String
    Definition Classes
    Named
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. val externalObservers: ObserverList[Observer[O]]

    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[this]
    Definition Classes
    Observable
  13. def flatMap[B, Inner[_], Output[+_] <: Observable[_]](compose: (O) => Inner[B])(implicit strategy: FlattenStrategy[Self, Inner, Output]): Output[B]

    compose

    Note: guarded against exceptions

    Definition Classes
    Observable
    Annotations
    @inline()
  14. def foreach(onNext: (O) => 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
    Observable
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. val internalObservers: ObserverList[InternalObserver[O]]

    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[this]
    Definition Classes
    Observable
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def isStarted: Boolean
    Attributes
    protected[this]
    Definition Classes
    Observable
  20. def mapTo[B](value: => B): Self[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
    Observable
  21. def mapToStrict[B](value: B): Self[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
    Observable
  22. 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
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. def onAddedExternalObserver(observer: Observer[O]): Unit
    Attributes
    protected
    Definition Classes
    Observable
    Annotations
    @inline()
  27. 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
    SingleParentObservableObservable
  28. 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
    SingleParentObservableObservable
  29. def recoverIgnoreErrors: Self[O]
    Definition Classes
    Observable
  30. def removeExternalObserverNow(observer: Observer[O]): Unit
    Attributes
    protected[airstream]
    Definition Classes
    Observable
  31. def removeInternalObserverNow(observer: InternalObserver[O]): 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
    Observable
  32. def setDisplayName(name: String): SingleParentObservable.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
  33. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  34. def toSignal[AA >: O](initialIfStream: => AA): Signal[AA]
    Definition Classes
    Observable
  35. def toStreamOrSignalChanges: EventStream[O]
    Definition Classes
    Observable
  36. 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
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  39. 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 InternalObserver[I]

Inherited from Observable[O]

Inherited from Named

Inherited from AnyRef

Inherited from Any

Ungrouped