WritableEventStream

trait EventStream[A]
trait EventSource[A]
trait Observable[A]
trait Named
trait Source[A]
class Object
trait Matchable
class Any
class CombineEventStreamN[A, Out]
class CombineEventStream2[T1, T2, Out]
class CombineEventStream3[T1, T2, T3, Out]
class CombineEventStream4[T1, T2, T3, T4, Out]
class CombineEventStream5[T1, T2, T3, T4, T5, Out]
class CombineEventStream6[T1, T2, T3, T4, T5, T6, Out]
class CombineEventStream7[T1, T2, T3, T4, T5, T6, T7, Out]
class CombineEventStream8[T1, T2, T3, T4, T5, T6, T7, T8, Out]
class CombineEventStream9[T1, T2, T3, T4, T5, T6, T7, T8, T9, Out]
class SampleCombineEventStream2[T0, T1, Out]
class SampleCombineEventStream3[T0, T1, T2, Out]
class SampleCombineEventStream4[T0, T1, T2, T3, Out]
class SampleCombineEventStream5[T0, T1, T2, T3, T4, Out]
class SampleCombineEventStream6[T0, T1, T2, T3, T4, T5, Out]
class SampleCombineEventStream7[T0, T1, T2, T3, T4, T5, T6, Out]
class SampleCombineEventStream8[T0, T1, T2, T3, T4, T5, T6, T7, Out]
class SampleCombineEventStream9[T0, T1, T2, T3, T4, T5, T6, T7, T8, Out]
class SwitchEventStream[I, O]
class MapEventStream[I, O]
class SplitEventStream[M, Input, Output, Key]

Value members

Inherited methods

override 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
Inherited from:
WritableObservable
def collect[B](pf: PartialFunction[A, B]): EventStream[B]
Value parameters:
pf

Note: guarded against exceptions

Inherited from:
EventStream
def compose[B](operator: EventStream[A] => EventStream[B]): EventStream[B]
Inherited from:
EventStream
def debounce(ms: Int): EventStream[A]

See docs for DebounceEventStream

See docs for DebounceEventStream

Inherited from:
EventStream
override def debugWith(debugger: Debugger[A]): EventStream[A]

See also debug convenience method in BaseObservable

See also debug convenience method in BaseObservable

Definition Classes
Inherited from:
EventStream
protected 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.

Inherited from:
Named
def delay(ms: Int): EventStream[A]
Value parameters:
ms

milliseconds of delay

Inherited from:
EventStream
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. You can use this for Signals too with Signal.composeChanges (see docs for more details)

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)

Inherited from:
EventStream
final def displayName: String
Inherited from:
Named
def filter(passes: A => Boolean): EventStream[A]
Value parameters:
passes

Note: guarded against exceptions

Inherited from:
EventStream
def filterNot(predicate: A => Boolean): EventStream[A]
Inherited from:
EventStream
def flatMap[B, Inner[_], Output <: (Observable)](compose: A => Inner[B])(implicit strategy: FlattenStrategy[EventStream, Inner, Output]): Output[B]
Value parameters:
compose

Note: guarded against exceptions

Inherited from:
BaseObservable
def foldLeft[B](initial: B)(fn: (B, A) => B): Signal[B]
Value parameters:
fn

Note: guarded against exceptions

Inherited from:
EventStream
def foldLeftRecover[B](initial: Try[B])(fn: (Try[B], Try[A]) => Try[B]): Signal[B]
Value parameters:
fn

Note: Must not throw!

Inherited from:
EventStream
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

Inherited from:
BaseObservable
override def map[B](project: A => B): EventStream[B]
Value parameters:
project

Note: guarded against exceptions

Definition Classes
Inherited from:
EventStream
def mapTo[B](value: => B): Self[B]

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).

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 parameters:
value

Note: guarded against exceptions

Inherited from:
BaseObservable
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

Inherited from:
BaseObservable
override protected def numAllObservers: Int

Total number of internal and external observers

Total number of internal and external observers

Definition Classes
Inherited from:
WritableObservable
override def recover[B >: A](pf: PartialFunction[Throwable, Option[B]]): EventStream[B]

See docs for MapEventStream

See docs for MapEventStream

Value parameters:
pf

Note: guarded against exceptions

Definition Classes
Inherited from:
EventStream
def recoverIgnoreErrors: Self[A]
Inherited from:
BaseObservable
override 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
Inherited from:
EventStream
def setDisplayName(name: String): Named.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
Inherited from:
Named
def startWith[B >: A](initial: => B): Signal[B]
Inherited from:
EventStream
def startWithNone: Signal[Option[A]]
Inherited from:
EventStream
def startWithTry[B >: A](initial: => Try[B]): Signal[B]
Inherited from:
EventStream
def throttle(ms: Int, leading: Boolean): EventStream[A]

See docs for ThrottleEventStream

See docs for ThrottleEventStream

Inherited from:
EventStream
override def toObservable: EventStream[A]
Definition Classes
Inherited from:
EventStream
def toSignal[B >: A](initial: => B): Signal[B]
Inherited from:
EventStream
def toSignalIfStream[B >: A](ifStream: EventStream[A] => Signal[B]): Signal[B]
Inherited from:
BaseObservable
def toSignalWithTry[B >: A](initial: => Try[B]): Signal[B]
Inherited from:
EventStream
def toStreamIfSignal[B >: A](ifSignal: Signal[A] => EventStream[B]): EventStream[B]
Inherited from:
BaseObservable
final override def toString: String

Override defaultDisplayName instead of this, if you need to.

Override defaultDisplayName instead of this, if you need to.

Definition Classes
Named -> Any
Inherited from:
Named
def toWeakSignal: Signal[Option[A]]

Convert this observable to a signal of Option[A]. If it is a stream, set initial value to None.

Convert this observable to a signal of Option[A]. If it is a stream, set initial value to None.

Inherited from:
BaseObservable

Inherited fields

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.

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.

Inherited from:
WritableObservable

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

Inherited from:
WritableObservable