DerivedVarSignal

class DerivedVarSignal[A, B](parent: Var[A], zoomIn: A => B, owner: Owner) extends MapSignal[A, B] with OwnedSignal[B]
trait OwnedSignal[B]
trait StrictSignal[B]
class MapSignal[A, B]
trait Signal[B]
trait SignalSource[B]
trait Observable[B]
trait BaseObservable[[A] =>> Signal[A], B]
trait Named
trait Source[B]
class Object
trait Matchable
class Any

Value members

Inherited methods

override def addObserver(observer: Observer[B])(owner: Owner): Subscription
Definition Classes
Inherited from
WritableObservable
Inherited from
Signal
def compose[B](operator: Signal[B] => Signal[B]): Signal[B]
Value Params
operator

Note: Must not throw!

Inherited from
Signal
def composeAll[B](changesOperator: EventStream[B] => EventStream[B], initialOperator: Try[B] => Try[B]): Signal[B]
Value Params
changesOperator

Note: Must not throw!

initialOperator

Note: Must not throw!

Inherited from
Signal
def composeChanges[AA >: B](operator: EventStream[B] => EventStream[AA]): Signal[AA]
Value Params
operator

Note: Must not throw!

Inherited from
Signal
override def debugWith(debugger: Debugger[B]): Signal[B]
Definition Classes
Inherited from
Signal
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
final def displayName: String
Inherited from
Named
final override protected def fireError(nextError: Throwable, transaction: Transaction): Unit
Definition Classes
Inherited from
WritableSignal
override protected def fireTry(nextValue: Try[B], transaction: Transaction): Unit

Signal propagates only if its value has changed

Signal propagates only if its value has changed

Definition Classes
Inherited from
WritableSignal
final override protected def fireValue(nextValue: B, transaction: Transaction): Unit
Definition Classes
Inherited from
WritableSignal
@inline
def flatMap[B, Inner[_], Output <: ([_] =>> Observable[_])](compose: B => Inner[B])(strategy: FlattenStrategy[[A] =>> Signal[A], Inner, Output]): Output[B]
Value Params
compose

Note: guarded against exceptions

Inherited from
BaseObservable
def foldLeft[B](makeInitial: B => B)(fn: (B, B) => B): Signal[B]
Value Params
fn

Note: guarded against exceptions

makeInitial

Note: guarded against exceptions

Inherited from
Signal
def foldLeftRecover[B](makeInitial: Try[B] => Try[B])(fn: (Try[B], Try[B]) => Try[B]): Signal[B]
Value Params
fn

(currentValue, nextParentValue) => nextValue

makeInitial

currentParentValue => initialValue Note: must not throw

Inherited from
Signal
def foreach(onNext: B => Unit)(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

This only kills the subscription, but this signal might also have other listeners

This only kills the subscription, but this signal might also have other listeners

Inherited from
OwnedSignal
override def map[B](project: B => B): Signal[B]
Value Params
project

Note: guarded against exceptions

Definition Classes
Inherited from
Signal
def mapTo[B](value: => B): Signal[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 Params
value

Note: guarded against exceptions

Inherited from
BaseObservable
def mapToStrict[B](value: B): Signal[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
def now(): B
Inherited from
StrictSignal
override protected def numAllObservers: Int
Definition Classes
Inherited from
WritableObservable
def observe(owner: Owner): OwnedSignal[B]

Add a noop observer to this signal to ensure that it's started. This lets you access .now and .tryNow on the resulting StrictSignal.

Add a noop observer to this signal to ensure that it's started. This lets you access .now and .tryNow on the resulting StrictSignal.

You can use myStream.toWeakSignal.observe.tryNow() to read the last emitted value from event streams just as well.

Inherited from
Signal
final override protected def onError(nextError: Throwable, transaction: Transaction): Unit
Definition Classes
Inherited from
InternalTryObserver
final override protected def onNext(nextValue: A, transaction: Transaction): Unit
Definition Classes
Inherited from
InternalTryObserver
override def recover[B >: B](pf: PartialFunction[Throwable, Option[B]]): Signal[B]
Value Params
pf

Note: guarded against exceptions

Definition Classes
Inherited from
Signal
override def recoverToTry: Signal[Try[B]]
Definition Classes
Inherited from
Signal
protected def setCurrentValue(newValue: Try[B]): Unit
Inherited from
WritableSignal
def setDisplayName(name: String): DerivedVarSignal[A, B]

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
override def toObservable: Signal[B]
Definition Classes
Inherited from
Signal
def toSignalIfStream[B >: B](ifStream: EventStream[B] => Signal[B]): Signal[B]
Inherited from
BaseObservable
def toStreamIfSignal[B >: B](ifSignal: Signal[B] => 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[B]]

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
def tryNow(): Try[B]
Inherited from
StrictSignal

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
protected var maybeLastSeenCurrentValue: UndefOr[Try[B]]
Inherited from
WritableSignal