CustomSource

trait CustomSource[A] extends WritableObservable[A]

Base functionality for a custom observable based on start and stop callbacks.

Base functionality for a custom observable based on start and stop callbacks.

See:

Companion
object
trait Observable[A]
trait BaseObservable[[A] =>> Observable[A], A]
trait Named
trait Source[A]
class Object
trait Matchable
class Any

Value members

Inherited methods

override def addObserver(observer: Observer[A])(owner: Owner): Subscription
Definition Classes
Inherited from
WritableObservable
def debugWith(debugger: Debugger[A]): Observable[A]

Create a new observable that listens to this one and has a debugger attached.

Create a new observable that listens to this one and has a debugger attached.

Use the resulting observable in place of the original observable in your code. See docs for details.

There are more convenient methods available implicitly from DebuggableObservable and DebuggableSignal, such as debugLog(), debugSpyEvents(), etc.

Inherited from
BaseObservable
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
protected def fireError(nextError: Throwable, transaction: Transaction): Unit
Inherited from
WritableObservable
protected def fireTry(nextValue: Try[A], transaction: Transaction): Unit
Inherited from
WritableObservable
protected def fireValue(nextValue: A, transaction: Transaction): Unit
Inherited from
WritableObservable
@inline
def flatMap[B, Inner[_], Output <: ([_] =>> Observable[_])](compose: A => Inner[B])(strategy: FlattenStrategy[[A] =>> Observable[A], Inner, Output]): Output[B]
Value Params
compose

Note: guarded against exceptions

Inherited from
BaseObservable
def foreach(onNext: A => 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
def map[B](project: A => B): Observable[B]
Value Params
project

Note: guarded against exceptions

Inherited from
BaseObservable
def mapTo[B](value: => B): Observable[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): Observable[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
Definition Classes
Inherited from
WritableObservable
def recover[B >: A](pf: PartialFunction[Throwable, Option[B]]): Observable[B]
Value Params
pf

Note: guarded against exceptions

Inherited from
BaseObservable
def recoverToTry: Observable[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

Inherited from
BaseObservable
def setDisplayName(name: String): CustomSource[A]

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
Inherited from
Source
def toSignalIfStream[B >: A](ifStream: EventStream[A] => Signal[B]): Signal[B]
Inherited from
BaseObservable
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