Operators
To support virtual State types, everything is put into the bundle traits. But because the operators all have cyclic dependencies to each other, we need this combining bundle, which all other operator bundles use as a self type this is then the actual combinator of those bundles, ensuring that they can access each other
Attributes
- Graph
- Supertypes
- trait ObserveBundletrait Sourcestrait FlattenApitrait FlattenCollectionCompattrait SignalBundletrait SignalCompatBundletrait EventBundletrait EventCompatBundletrait ReadableMacroBundletrait DefaultImplementationsclass Objecttrait Matchableclass Any
- Known subtypes
- trait RescalaInterfaceobject sidup.typeobject synchron.typeobject toposort.typeobject unmanaged.typeobject default.typeobject IncrementalApi.type
Members list
create
Similar to Signal expressions, but resulting in an event. Accessed events return options depending on whether they fire or not, and the complete result of the expression is an event as well.
Similar to Signal expressions, but resulting in an event. Accessed events return options depending on whether they fire or not, and the complete result of the expression is an event as well.
Attributes
- See also:
Signal
- Inherited from:
- EventCompatBundle
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- Sources
A signal expression can be used to create signals accessing arbitrary other signals. Use the apply method on a signal to access its value inside of a signal expression.
A signal expression can be used to create signals accessing arbitrary other signals. Use the apply method on a signal to access its value inside of a signal expression.
val a: Signal[Int]
val b: Signal[Int]
val result: Signal[String] = Signal { a().toString + b().toString}
Attributes
- Inherited from:
- SignalCompatBundle
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Type members
Inherited classlikes
Attributes
- Inherited from:
- DefaultImplementations
- Graph
- Supertypes
- trait DisconnectableImpltrait Disconnectabletrait Derivedtrait ReSourceclass Objecttrait Matchableclass Any
Attributes
- Inherited from:
- DefaultImplementations
- Graph
- Supertypes
- trait DisconnectableImpltrait Disconnectabletrait Derivedtrait ReSourceclass Objecttrait Matchableclass Any
- Known subtypes
- class EventImpl[T]class SignalImpl[T]
Events only propagate a value when they are changing, when the system is at rest, events have no values.
Events only propagate a value when they are changing, when the system is at rest, events have no values.
Note: We hide implicit parameters of the API in the documentation. They are used to ensure correct creation, and you normally do not have to worry about them, except if you accidentally call the implicit parameter list, in which cas you may get cryptic errors. This is a scala limitation. We also hide the internal state parameter of passed and returned events.
Attributes
- T
Value type of the event occurrences.
- Inherited from:
- EventBundle
- Graph
- Supertypes
- Known subtypes
Attributes
- Inherited from:
- EventCompatBundle
- Graph
- Supertypes
- Known subtypes
Attributes
- isDynamicWithStaticDeps
If this is None, the event is static. Else, it is dynamic with the set of static dependencies
- Inherited from:
- DefaultImplementations
- Graph
- Supertypes
- trait Event[T]trait EventCompat[T]class DerivedImpl[T]trait DisconnectableImpltrait Disconnectabletrait Derivedtrait ReSourceclass Objecttrait Matchableclass Any
Attributes
- Inherited from:
- EventBundle
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Source events with imperative occurrences
Source events with imperative occurrences
Attributes
- S
Struct type used for the propagation of the event
- T
Type returned when the event fires
- initialState
of by the event
- Inherited from:
- Sources
- Graph
- Supertypes
- trait Event[T]trait Disconnectabletrait EventCompat[T]trait Source[T]trait ReSourceclass Objecttrait Matchableclass Any
Attributes
- Inherited from:
- FlattenApi
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- EventCompatBundle
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
observers are normale reactives that are configured by a function that converts the value of the input into an ObserveInteract
observers are normale reactives that are configured by a function that converts the value of the input into an ObserveInteract
Attributes
- Inherited from:
- ObserveBundle
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- ObserveBundle
- Graph
- Supertypes
Attributes
- Inherited from:
- ReadableMacroBundle
- Graph
- Supertypes
- Known subtypes
- trait EventCompat[T]trait Event[T]class ChangeEventImpl[T]class EventImpl[T]class Evt[T]trait SignalCompat[T]trait Signal[T]class SignalImpl[T]class Var[A]class Reactor[T]
Time changing value derived from the dependencies.
Time changing value derived from the dependencies.
Attributes
- T
Type stored by the signal
- Inherited from:
- SignalBundle
- Graph
- Supertypes
- Known subtypes
- class SignalImpl[T]class Var[A]
Attributes
- Inherited from:
- SignalCompatBundle
- Graph
- Supertypes
- Known subtypes
Attributes
- isDynamicWithStaticDeps
None means static dependencies only, Some means dynamic with the given static ones for optimization
- Inherited from:
- DefaultImplementations
- Graph
- Supertypes
- trait Signal[T]trait SignalCompat[T]class DerivedImpl[T]trait DisconnectableImpltrait Disconnectabletrait Derivedtrait ReSourceclass Objecttrait Matchableclass Any
Functions to construct signals, you probably want to use signal expressions in rescala.interface.RescalaInterface.Signal for a nicer API.
Functions to construct signals, you probably want to use signal expressions in rescala.interface.RescalaInterface.Signal for a nicer API.
Attributes
- Inherited from:
- SignalBundle
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Attributes
- Inherited from:
- SignalCompatBundle
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
Source signals with imperatively updates.
Source signals with imperatively updates.
Attributes
- A
Type stored by the signal
- S
Struct type used for the propagation of the signal
- Inherited from:
- Sources
- Graph
- Supertypes
- trait Signal[A]trait SignalCompat[A]trait Disconnectabletrait Source[A]trait ReSourceclass Objecttrait Matchableclass Any
Types
Value members
Inherited methods
Attributes
- Inherited from:
- EventCompatBundle
Flatten a Signal[Traversable[Event[B]]] into a Event[B]. The new Event fires the value of any inner firing Event. If multiple inner Events fire, the first one in iteration order is selected.
Flatten a Signal[Traversable[Event[B]]] into a Event[B]. The new Event fires the value of any inner firing Event. If multiple inner Events fire, the first one in iteration order is selected.
Attributes
- Inherited from:
- FlattenCollectionCompat
Flatten a Signal[Traversable[Event[B]]] into a Event[Traversable[Option[B]]] where the new Event fires whenever any of the inner events fire
Flatten a Signal[Traversable[Event[B]]] into a Event[Traversable[Option[B]]] where the new Event fires whenever any of the inner events fire
Attributes
- Inherited from:
- FlattenCollectionCompat
Extensions
Inherited extensions
Attributes
- Inherited from:
- EventCompatBundle
Implicits
Inherited implicits
Flatten a Signal[Array[Signal[B]]] into a Signal[Array[B]] where the new Signal updates whenever any of the inner or the outer signal updates
Flatten a Signal[Array[Signal[B]]] into a Signal[Array[B]] where the new Signal updates whenever any of the inner or the outer signal updates
Attributes
- Inherited from:
- FlattenApi
Flatten a Signal[Event[B]]] into a Event[B] where the new Event fires whenever the current inner event fires
Flatten a Signal[Event[B]]] into a Event[B] where the new Event fires whenever the current inner event fires
Attributes
- Inherited from:
- FlattenApi
Flatten a Event[Option[B]] into a Event[B] that fires whenever the inner option is defined.
Flatten a Event[Option[B]] into a Event[B] that fires whenever the inner option is defined.
Attributes
- Inherited from:
- FlattenApi
Flatten a Signal[Option[Signal[B]]] into a Signal[Option[B]] where the new Signal updates whenever any of the inner or the outer signal updates
Flatten a Signal[Option[Signal[B]]] into a Signal[Option[B]] where the new Signal updates whenever any of the inner or the outer signal updates
Attributes
- Inherited from:
- FlattenApi
Flatten a Signal[Signal[B]] into a Signal[B] that changes whenever the outer or inner signal changes.
Flatten a Signal[Signal[B]] into a Signal[B] that changes whenever the outer or inner signal changes.
Attributes
- Inherited from:
- FlattenApi
Flatten a Signal[Traversable[Signal[B]]] into a Signal[Traversable[B]] where the new Signal updates whenever any of the inner or the outer signal updates
Flatten a Signal[Traversable[Signal[B]]] into a Signal[Traversable[B]] where the new Signal updates whenever any of the inner or the outer signal updates
Attributes
- Inherited from:
- FlattenCollectionCompat