class MapSignal[I, O] extends WritableSignal[O] with SingleParentObservable[I, O] with InternalTryObserver[I]
This signal emits an error if the parent observable emits an error or if project throws
If recover is defined and needs to be called, it can do the following:
- Return Some(value) to make this signal emit value
- Return None to make this signal ignore (swallow) this error
- Not handle the error (meaning .isDefinedAt(error) must be false) to emit the original error
- Alphabetic
- By Inheritance
- MapSignal
- InternalTryObserver
- SingleParentObservable
- InternalObserver
- WritableSignal
- WritableObservable
- Signal
- SignalSource
- Observable
- BaseObservable
- Named
- Source
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def addExternalObserver(observer: Observer[O], owner: Owner): Subscription
Subscribe an external observer to this observable
Subscribe an external observer to this observable
- Attributes
- protected[this]
- Definition Classes
- WritableObservable → BaseObservable
- def addInternalObserver(observer: InternalObserver[O]): 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
- WritableObservable → BaseObservable
- def addObserver(observer: Observer[O])(implicit owner: Owner): Subscription
Subscribe an external observer to this observable
Subscribe an external observer to this observable
- Definition Classes
- WritableObservable → BaseObservable
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def changes: EventStream[O]
- Definition Classes
- Signal
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def compose[B](operator: (Signal[O]) => Signal[B]): Signal[B]
- operator
Note: Must not throw!
- Definition Classes
- Signal
- def composeAll[B](changesOperator: (EventStream[O]) => EventStream[B], initialOperator: (Try[O]) => Try[B]): Signal[B]
- changesOperator
Note: Must not throw!
- initialOperator
Note: Must not throw!
- Definition Classes
- Signal
- def composeChanges[AA >: O](operator: (EventStream[O]) => EventStream[AA]): Signal[AA]
- operator
Note: Must not throw!
- Definition Classes
- Signal
- def debugWith(debugger: Debugger[O]): Signal[O]
See also debug methods in com.raquo.airstream.debug.DebuggableObservable
See also debug methods in com.raquo.airstream.debug.DebuggableObservable
- Definition Classes
- Signal → BaseObservable
- 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
- final def displayName: String
- Definition Classes
- Named
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- val externalObservers: ObserverList[Observer[O]]
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
- final def fireError(nextError: Throwable, transaction: Transaction): Unit
- Attributes
- protected
- Definition Classes
- WritableSignal → WritableObservable
- def fireTry(nextValue: Try[O], transaction: Transaction): Unit
Signal propagates only if its value has changed
Signal propagates only if its value has changed
- Attributes
- protected
- Definition Classes
- WritableSignal → WritableObservable
- final def fireValue(nextValue: O, transaction: Transaction): Unit
- Attributes
- protected
- Definition Classes
- WritableSignal → WritableObservable
- def flatMap[B, Inner[_], Output[+_] <: Observable[_]](compose: (O) => Inner[B])(implicit strategy: FlattenStrategy[[+_]Signal[_], Inner, Output]): Output[B]
- compose
Note: guarded against exceptions
- Definition Classes
- BaseObservable
- Annotations
- @inline()
- def foldLeft[B](makeInitial: (O) => B)(fn: (B, O) => B): Signal[B]
- makeInitial
Note: guarded against exceptions
- fn
Note: guarded against exceptions
- Definition Classes
- Signal
- def foldLeftRecover[B](makeInitial: (Try[O]) => Try[B])(fn: (Try[B], Try[O]) => Try[B]): Signal[B]
- makeInitial
currentParentValue => initialValue Note: must not throw
- fn
(currentValue, nextParentValue) => nextValue
- Definition Classes
- Signal
- def foreach(onNext: (O) => 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
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def initialValue: Try[O]
Evaluate initial value of this Signal.
Evaluate initial value of this Signal. This method must only be called once, when this value is first needed. You should override this method as
def(novalor lazy val) to avoid holding a reference to the initial value beyond the duration of its relevance.- Attributes
- protected[this]
- Definition Classes
- MapSignal → WritableSignal
- val internalObservers: ObserverList[InternalObserver[O]]
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
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isStarted: Boolean
- Attributes
- protected
- Definition Classes
- BaseObservable
- def map[B](project: (O) => B): Signal[B]
- project
Note: guarded against exceptions
- Definition Classes
- Signal → BaseObservable
- def mapTo[B](value: => B): Signal[B]
valueis passed by name, so it will be evaluated whenever the Observable fires.valueis 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
- def mapToStrict[B](value: B): Signal[B]
valueis evaluated strictly, only once, when this method is called.valueis evaluated strictly, only once, when this method is called.See also: mapTo
- Definition Classes
- BaseObservable
- 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
- val maybeLastSeenCurrentValue: UndefOr[Try[O]]
- Attributes
- protected
- Definition Classes
- WritableSignal
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def now(): O
Get the signal's current value
- def numAllObservers: Int
Total number of internal and external observers
Total number of internal and external observers
- Attributes
- protected
- Definition Classes
- WritableObservable → BaseObservable
- def observe(implicit owner: Owner): OwnedSignal[O]
Add a noop observer to this signal to ensure that it's started.
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.- Definition Classes
- Signal
- def onAddedExternalObserver(observer: Observer[O]): Unit
- Attributes
- protected
- Definition Classes
- Signal → BaseObservable
- final def onError(nextError: Throwable, transaction: Transaction): Unit
Must not throw
Must not throw
- Attributes
- protected
- Definition Classes
- InternalTryObserver → InternalObserver
- final def onNext(nextValue: I, transaction: Transaction): Unit
Must not throw
Must not throw
- Attributes
- protected
- Definition Classes
- InternalTryObserver → InternalObserver
- 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
- SingleParentObservable → BaseObservable
- 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
- SingleParentObservable → BaseObservable
- def onTry(nextParentValue: Try[I], transaction: Transaction): Unit
Must not throw
Must not throw
- Attributes
- protected
- Definition Classes
- MapSignal → InternalObserver
- val parent: Signal[I]
- Attributes
- protected[this]
- Definition Classes
- MapSignal → SingleParentObservable
- val project: (I) => O
- Attributes
- protected[this]
- implicit def protectedAccessEvidence: Protected
- Attributes
- protected
- Definition Classes
- BaseObservable
- Annotations
- @inline()
- def recover[B >: O](pf: PartialFunction[Throwable, Option[B]]): Signal[B]
- pf
Note: guarded against exceptions
- Definition Classes
- Signal → BaseObservable
- val recover: Option[PartialFunction[Throwable, Option[O]]]
- Attributes
- protected[this]
- def recoverIgnoreErrors: Signal[O]
- Definition Classes
- BaseObservable
- def recoverToTry: Signal[Try[O]]
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
- Signal → BaseObservable
- def removeExternalObserverNow(observer: Observer[O]): Unit
- Attributes
- protected[airstream]
- Definition Classes
- WritableObservable → BaseObservable
- def removeInternalObserverNow(observer: InternalObserver[O]): 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
- WritableObservable → BaseObservable
- def setCurrentValue(newValue: Try[O]): Unit
- Attributes
- protected
- Definition Classes
- WritableSignal
- def setDisplayName(name: String): MapSignal.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
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toObservable: Signal[O]
- Definition Classes
- Signal → SignalSource → Source
- def toSignalIfStream[B >: O](ifStream: (EventStream[O]) => Signal[B]): Signal[B]
- Definition Classes
- BaseObservable
- def toStreamIfSignal[B >: O](ifSignal: (Signal[O]) => EventStream[B]): EventStream[B]
- Definition Classes
- BaseObservable
- 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
- def toWeakSignal: Signal[Option[O]]
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
- val topoRank: Int
Note: Use Protected.topoRank(observable) to read another observable's topoRank if needed
Note: Use Protected.topoRank(observable) to read another observable's topoRank if needed
- Attributes
- protected
- Definition Classes
- MapSignal → BaseObservable
- def tryNow(): Try[O]
Note: Initial value is only evaluated if/when needed (when there are observers)
Note: Initial value is only evaluated if/when needed (when there are observers)
- Attributes
- protected[airstream]
- Definition Classes
- WritableSignal → Signal
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated