Packages

c

com.raquo.airstream.combine

CombineEventStreamN

class CombineEventStreamN[A, Out] extends EventStream[Out] with CombineObservable[Out]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CombineEventStreamN
  2. CombineObservable
  3. SyncObservable
  4. EventStream
  5. Observable
  6. Named
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CombineEventStreamN(parents: Seq[EventStream[A]], combinator: (Seq[A]) => Out)

    combinator

    Must not throw!

Type Members

  1. type Self[+T] = EventStream[T]

    Basic type for this observable.

    Basic type for this observable. Could be EventStream or Signal

    Definition Classes
    EventStreamObservable

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[Out]): 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[Out])(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[Out, B]): EventStream[B]

    pf

    Note: guarded against exceptions

    Definition Classes
    EventStream
  9. def combinedValue: Try[Out]

    This should only be called when all inputs are ready.

    This should only be called when all inputs are ready. It will throw if the required parent values are missing.

    Attributes
    protected[this]
    Definition Classes
    CombineEventStreamNCombineObservable
  10. def compose[B](operator: (EventStream[Out]) => EventStream[B]): EventStream[B]
    Definition Classes
    EventStream
  11. def debounce(ms: Int): EventStream[Out]

    See docs for DebounceEventStream

    See docs for DebounceEventStream

    Definition Classes
    EventStream
  12. def debugWith(debugger: Debugger[Out]): EventStream[Out]

    See also debug convenience method in Observable

    See also debug convenience method in Observable

    Definition Classes
    EventStreamObservable
  13. 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
  14. def delay(ms: Int = 0): EventStream[Out]

    ms

    milliseconds of delay

    Definition Classes
    EventStream
  15. def delaySync(after: EventStream[_]): EventStream[Out]

    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)

    Definition Classes
    EventStream
  16. final def displayName: String
    Definition Classes
    Named
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  19. val externalObservers: ObserverList[Observer[Out]]

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

    passes

    Note: guarded against exceptions

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

    compose

    Note: guarded against exceptions

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

    fn

    Note: guarded against exceptions

    Definition Classes
    EventStream
  27. def foldLeftRecover[B](initial: Try[B])(fn: (Try[B], Try[Out]) => Try[B]): Signal[B]

    fn

    Note: Must not throw!

    Definition Classes
    EventStream
  28. def foreach(onNext: (Out) => 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
  29. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  31. def inputsReady: Boolean

    Check whether inputs (parent observables' values) are all available to be combined.

    Check whether inputs (parent observables' values) are all available to be combined.

    Attributes
    protected[this]
    Definition Classes
    CombineEventStreamNCombineObservable
  32. val internalObservers: ObserverList[InternalObserver[Out]]

    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: (Out) => 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: mapToStrict

    value

    Note: guarded against exceptions

    Definition Classes
    Observable
  37. 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
  38. 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
  39. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  41. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  42. def onAddedExternalObserver(observer: Observer[Out]): Unit
    Attributes
    protected
    Definition Classes
    Observable
    Annotations
    @inline()
  43. def onInputsReady(transaction: Transaction): Unit

    Implementations should call this instead of .fireValue() / .fireTry() Transaction will call syncFire when it's time, and that in turn will evaluate maybeCombinedValue and call .fireTry()

    Implementations should call this instead of .fireValue() / .fireTry() Transaction will call syncFire when it's time, and that in turn will evaluate maybeCombinedValue and call .fireTry()

    Attributes
    protected[this]
    Definition Classes
    CombineObservable
  44. 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
    CombineObservableObservable
  45. 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
    CombineEventStreamNCombineObservableObservable
  46. val parentObservers: Array[InternalParentObserver[_]]

    Parent observers are not immediately active.

    Parent observers are not immediately active. onStart/onStop regulates that.

    Attributes
    protected[this]
    Definition Classes
    CombineObservable
  47. def recover[B >: Out](pf: PartialFunction[Throwable, Option[B]]): Self[B]

    See docs for MapEventStream

    See docs for MapEventStream

    pf

    Note: guarded against exceptions

    Definition Classes
    EventStreamObservable
  48. def recoverIgnoreErrors: Self[Out]
    Definition Classes
    Observable
  49. def recoverToTry: EventStream[Try[Out]]

    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
  50. def removeExternalObserverNow(observer: Observer[Out]): Unit
    Attributes
    protected[airstream]
    Definition Classes
    Observable
  51. def removeInternalObserverNow(observer: InternalObserver[Out]): 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
  52. def setDisplayName(name: String): CombineEventStreamN.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
  53. def startWith[B >: Out](initial: => B): Signal[B]
    Definition Classes
    EventStream
    Annotations
    @inline()
  54. def startWithNone: Signal[Option[Out]]
    Definition Classes
    EventStream
    Annotations
    @inline()
  55. def startWithTry[B >: Out](initial: => Try[B]): Signal[B]
    Definition Classes
    EventStream
    Annotations
    @inline()
  56. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  57. def throttle(ms: Int, leading: Boolean = true): EventStream[Out]

    See docs for ThrottleEventStream

    See docs for ThrottleEventStream

    Definition Classes
    EventStream
  58. def toSignal[B >: Out](initial: => B): Signal[B]
    Definition Classes
    EventStreamObservable
  59. def toSignalWithTry[B >: Out](initial: => Try[B]): Signal[B]
    Definition Classes
    EventStream
  60. def toStreamOrSignalChanges: EventStream[Out]
    Definition Classes
    Observable
  61. 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
  62. def toWeakSignal: Signal[Option[Out]]
    Definition Classes
    EventStream
  63. 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
    CombineEventStreamNObservable
  64. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  65. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  66. 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 CombineObservable[Out]

Inherited from SyncObservable[Out]

Inherited from EventStream[Out]

Inherited from Observable[Out]

Inherited from Named

Inherited from AnyRef

Inherited from Any

Ungrouped