Packages

class CustomStreamSource[A] extends WritableEventStream[A] with CustomSource[A]

Use this to easily create a custom signal from an external source

See docs on custom sources, and CustomSource.Config

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CustomStreamSource
  2. CustomSource
  3. WritableEventStream
  4. WritableObservable
  5. EventStream
  6. EventSource
  7. Observable
  8. BaseObservable
  9. Named
  10. Source
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. val _fireError: FireError
    Attributes
    protected[this]
    Definition Classes
    CustomSource
  5. val _fireTry: SetCurrentValue[A]
    Attributes
    protected[this]
    Definition Classes
    CustomSource
  6. val _fireValue: FireValue[A]
    Attributes
    protected[this]
    Definition Classes
    CustomSource
  7. def addExternalObserver(observer: Observer[A], owner: Owner): Subscription

    Subscribe an external observer to this observable

    Subscribe an external observer to this observable

    Attributes
    protected[this]
    Definition Classes
    WritableObservableBaseObservable
  8. 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
    WritableObservableBaseObservable
  9. 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
    WritableObservableBaseObservable
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  12. def collect[B](pf: PartialFunction[A, B]): EventStream[B]

    pf

    Note: guarded against exceptions

    Definition Classes
    EventStream
  13. def compose[B](operator: (EventStream[A]) => EventStream[B]): EventStream[B]
    Definition Classes
    EventStream
  14. val config: Config
    Attributes
    protected[this]
    Definition Classes
    CustomStreamSourceCustomSource
  15. def debounce(ms: Int): EventStream[A]

    See docs for DebounceEventStream

    See docs for DebounceEventStream

    Definition Classes
    EventStream
  16. def debugWith(debugger: Debugger[A]): EventStream[A]

    See also debug convenience method in BaseObservable

    See also debug convenience method in BaseObservable

    Definition Classes
    EventStreamBaseObservable
  17. 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
  18. def delay(ms: Int = 0): EventStream[A]

    ms

    milliseconds of delay

    Definition Classes
    EventStream
  19. 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)

    Definition Classes
    EventStream
  20. final def displayName: String
    Definition Classes
    Named
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  23. 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
    Definition Classes
    WritableObservable
  24. def filter(passes: (A) => Boolean): EventStream[A]

    passes

    Note: guarded against exceptions

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

    compose

    Note: guarded against exceptions

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

    fn

    Note: guarded against exceptions

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

    fn

    Note: Must not throw!

    Definition Classes
    EventStream
  32. 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
    BaseObservable
  33. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. val getIsStarted: GetIsStarted
    Attributes
    protected[this]
    Definition Classes
    CustomSource
  35. val getStartIndex: GetStartIndex
    Attributes
    protected[this]
    Definition Classes
    CustomSource
  36. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  37. 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
    Definition Classes
    WritableObservable
  38. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  39. def isStarted: Boolean
    Attributes
    protected
    Definition Classes
    BaseObservable
  40. def map[B](project: (A) => B): EventStream[B]

    project

    Note: guarded against exceptions

    Definition Classes
    EventStreamBaseObservable
  41. def mapTo[B](value: => B): EventStream[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
  42. def mapToStrict[B](value: B): EventStream[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
  43. 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
  44. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  45. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  46. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  47. def numAllObservers: Int

    Total number of internal and external observers

    Total number of internal and external observers

    Attributes
    protected
    Definition Classes
    WritableObservableBaseObservable
  48. def onAddedExternalObserver(observer: Observer[A]): Unit
    Attributes
    protected[this]
    Definition Classes
    BaseObservable
  49. 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
    CustomSourceBaseObservable
  50. 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
    CustomSourceBaseObservable
  51. implicit def protectedAccessEvidence: Protected
    Attributes
    protected
    Definition Classes
    BaseObservable
    Annotations
    @inline()
  52. def recover[B >: A](pf: PartialFunction[Throwable, Option[B]]): EventStream[B]

    See docs for MapEventStream

    See docs for MapEventStream

    pf

    Note: guarded against exceptions

    Definition Classes
    EventStreamBaseObservable
  53. def recoverIgnoreErrors: EventStream[A]
    Definition Classes
    BaseObservable
  54. 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
    EventStreamBaseObservable
  55. def removeExternalObserverNow(observer: Observer[A]): Unit
    Attributes
    protected[airstream]
    Definition Classes
    WritableObservableBaseObservable
  56. 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
    WritableObservableBaseObservable
  57. def setDisplayName(name: String): CustomStreamSource.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
  58. val startIndex: StartIndex
    Attributes
    protected[this]
    Definition Classes
    CustomSource
  59. def startWith[B >: A](initial: => B): Signal[B]
    Definition Classes
    EventStream
    Annotations
    @inline()
  60. def startWithNone: Signal[Option[A]]
    Definition Classes
    EventStream
    Annotations
    @inline()
  61. def startWithTry[B >: A](initial: => Try[B]): Signal[B]
    Definition Classes
    EventStream
    Annotations
    @inline()
  62. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  63. def throttle(ms: Int, leading: Boolean = true): EventStream[A]

    See docs for ThrottleEventStream

    See docs for ThrottleEventStream

    Definition Classes
    EventStream
  64. def toObservable: EventStream[A]
    Definition Classes
    EventStreamEventSourceSource
  65. def toSignal[B >: A](initial: => B): Signal[B]
    Definition Classes
    EventStream
  66. def toSignalIfStream[B >: A](ifStream: (EventStream[A]) => Signal[B]): Signal[B]
    Definition Classes
    BaseObservable
  67. def toSignalWithTry[B >: A](initial: => Try[B]): Signal[B]
    Definition Classes
    EventStream
  68. def toStreamIfSignal[B >: A](ifSignal: (Signal[A]) => EventStream[B]): EventStream[B]
    Definition Classes
    BaseObservable
  69. 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
  70. def toWeakSignal: Signal[Option[A]]

    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
  71. val topoRank: Int

    CustomSource is intended for observables that don't synchronously depend on other observables.

    CustomSource is intended for observables that don't synchronously depend on other observables.

    Attributes
    protected
    Definition Classes
    CustomSourceBaseObservable
  72. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  73. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  74. 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 CustomSource[A]

Inherited from WritableEventStream[A]

Inherited from WritableObservable[A]

Inherited from EventStream[A]

Inherited from EventSource[A]

Inherited from Observable[A]

Inherited from BaseObservable[[+_]EventStream[_], A]

Inherited from Named

Inherited from Source[A]

Inherited from AnyRef

Inherited from Any

Ungrouped