trait EventStream[+A] extends Observable[A]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EventStream
  2. Observable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type Self[+T] = EventStream[T]
    Definition Classes
    EventStreamObservable

Abstract Value Members

  1. abstract val topoRank: Int
    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[A]): 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[A])(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 collect[B](pf: PartialFunction[A, B]): EventStream[B]

    pf

    Note: guarded against exceptions

  9. def combineWith[AA >: A, B](otherEventStream: EventStream[B]): EventStream[(AA, B)]
  10. def compose[B](operator: (EventStream[A]) => EventStream[B]): EventStream[B]
  11. def debounce(delayFromLastEventMillis: Int): EventStream[A]

    See docs for DebounceEventStream

  12. def debugBreak(when: (A) => Boolean = _ => true): Self[A]
    Definition Classes
    Observable
  13. def debugLog(prefix: String = "event", when: (A) => Boolean = _ => true): Self[A]

    print events using println - use for Scala values

    print events using println - use for Scala values

    Definition Classes
    Observable
  14. def debugLogJs(prefix: String = "event", when: (A) => Boolean = _ => true): Self[A]

    print events using dom.console.log - use for JS values

    print events using dom.console.log - use for JS values

    Definition Classes
    Observable
  15. def debugSpy(fn: (A) => Unit): Self[A]
    Definition Classes
    Observable
  16. def delay(ms: Int = 0): EventStream[A]

    ms

    milliseconds of delay

  17. def delaySync(after: EventStream[_]): EventStream[A]

    Make a stream that emits this stream's values but waits for after stream to emit first in a given transaction.

    Make a stream that emits this stream's values but waits for after stream to emit first in a given transaction. You can use this for Signals too with Signal.composeChanges (see docs for more details)

  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  20. val externalObservers: ObserverList[Observer[A]]

    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
  21. def filter(passes: (A) => Boolean): EventStream[A]

    passes

    Note: guarded against exceptions

  22. def filterNot(predicate: (A) => Boolean): EventStream[A]
  23. def fireError(nextError: Throwable, transaction: Transaction): Unit
    Attributes
    protected[this]
    Definition Classes
    EventStreamObservable
  24. final def fireTry(nextValue: Try[A], transaction: Transaction): Unit
    Attributes
    protected[this]
    Definition Classes
    EventStreamObservable
  25. def fireValue(nextValue: A, transaction: Transaction): Unit
    Attributes
    protected[this]
    Definition Classes
    EventStreamObservable
  26. def flatMap[B, Inner[_], Output[+_] <: Observable[_]](compose: (A) => Inner[B])(implicit strategy: FlattenStrategy[Self, Inner, Output]): Output[B]

    compose

    Note: guarded against exceptions

    Definition Classes
    Observable
    Annotations
    @inline()
  27. def foldLeft[B](initial: B)(fn: (B, A) => B): Signal[B]

    fn

    Note: guarded against exceptions

  28. def foldLeftRecover[B](initial: Try[B])(fn: (Try[B], Try[A]) => Try[B]): Signal[B]

    fn

    Note: Must not throw!

  29. def foreach(onNext: (A) => 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
  30. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  31. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  32. val internalObservers: ObserverList[InternalObserver[A]]

    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
  33. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  34. def isStarted: Boolean
    Attributes
    protected[this]
    Definition Classes
    Observable
  35. def map[B](project: (A) => B): EventStream[B]

    project

    Note: guarded against exceptions

    Definition Classes
    EventStreamObservable
  36. 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: mapToValue

    value

    Note: guarded against exceptions

    Definition Classes
    Observable
  37. def mapToValue[B](value: B): Self[B]

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

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

    See also: mapTo

    Definition Classes
    Observable
  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 onAddedExternalObserver(observer: Observer[A]): Unit
    Attributes
    protected
    Definition Classes
    Observable
    Annotations
    @inline()
  42. 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
    Observable
    Annotations
    @inline()
  43. 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
    Observable
    Annotations
    @inline()
  44. def recover[B >: A](pf: PartialFunction[Throwable, Option[B]]): Self[B]

    See docs for MapEventStream

    See docs for MapEventStream

    pf

    Note: guarded against exceptions

    Definition Classes
    EventStreamObservable
  45. def recoverIgnoreErrors: Self[A]
    Definition Classes
    Observable
  46. def recoverToTry: EventStream[Try[A]]

    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
    EventStreamObservable
  47. def removeExternalObserverNow(observer: Observer[A]): Unit
    Attributes
    protected[airstream]
    Definition Classes
    Observable
  48. def removeInternalObserverNow(observer: InternalObserver[A]): 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
  49. def sample[B](signal: Signal[B]): EventStream[B]
  50. def startWith[B >: A](initial: => B): Signal[B]
    Annotations
    @inline()
  51. def startWithNone: Signal[Option[A]]
    Annotations
    @inline()
  52. def startWithTry[B >: A](initial: => Try[B]): Signal[B]
    Annotations
    @inline()
  53. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  54. def throttle(intervalMillis: Int): EventStream[A]

    See docs for ThrottleEventStream

  55. def toSignal[B >: A](initial: => B): Signal[B]
    Definition Classes
    EventStreamObservable
  56. def toSignalWithTry[B >: A](initial: => Try[B]): Signal[B]
  57. def toStreamOrSignalChanges: EventStream[A]
    Definition Classes
    Observable
  58. def toString(): String
    Definition Classes
    AnyRef → Any
  59. def toWeakSignal: Signal[Option[A]]
  60. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  61. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  62. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  63. def withCurrentValueOf[B](signal: Signal[B]): EventStream[(A, B)]

Deprecated Value Members

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

Inherited from Observable[A]

Inherited from AnyRef

Inherited from Any

Ungrouped