trait Source[+A] extends AnyRef

A Source is something that can be converted to an Observable. The counterparty to Source is a Sink, something that can be converted to an Observer.

A Source could be an Observable itself, an EventBus, a Var, or, via implicits, a third party type like Future or ZIO.

The point of using Source instead of Observable in your API is to let the end users pass simply eventBus instead of eventBus.events to a method that requires Source, and to achieve that without having an implicit conversion from EventBus to Observable, because then you'd also want an implicit conversion from EventBus to Observer, and those two would be incompatible (e.g. both Observable and Observer have a filter method).

Linear Supertypes
AnyRef, Any
Known Subclasses
CombineEventStreamN, CombineObservable, CombineSignalN, MergeEventStream, SampleCombineEventStreamN, SampleCombineSignalN, CombineEventStream2, CombineEventStream3, CombineEventStream4, CombineEventStream5, CombineEventStream6, CombineEventStream7, CombineEventStream8, CombineEventStream9, CombineSignal2, CombineSignal3, CombineSignal4, CombineSignal5, CombineSignal6, CombineSignal7, CombineSignal8, CombineSignal9, SampleCombineEventStream2, SampleCombineEventStream3, SampleCombineEventStream4, SampleCombineEventStream5, SampleCombineEventStream6, SampleCombineEventStream7, SampleCombineEventStream8, SampleCombineEventStream9, SampleCombineSignal2, SampleCombineSignal3, SampleCombineSignal4, SampleCombineSignal5, SampleCombineSignal6, SampleCombineSignal7, SampleCombineSignal8, SampleCombineSignal9, SingleParentObservable, BaseObservable, EventStream, Observable, Signal, EventSource, SignalSource, SyncObservable, WritableEventStream, WritableObservable, WritableSignal, CustomSignalSource, CustomSource, CustomStreamSource, DebuggerEventStream, DebuggerObservable, DebuggerSignal, EventBus, EventBusStream, ConcurrentEventStream, ConcurrentFutureStream, SwitchEventStream, SwitchSignal, FilterEventStream, FoldLeftSignal, MapEventStream, MapSignal, SignalFromEventStream, SplitEventStream, DerivedVar, DerivedVarSignal, ObservedSignal, OwnedSignal, SourceVar, StrictSignal, Val, Var, DebounceEventStream, DelayEventStream, FutureEventStream, FutureSignal, PeriodicEventStream, SyncDelayEventStream, ThrottleEventStream, AjaxEventStream
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Source
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def toObservable: Observable[A]

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  14. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  15. def toString(): String
    Definition Classes
    AnyRef → Any
  16. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  17. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  18. 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 AnyRef

Inherited from Any

Ungrouped