SampleCombineEventStream8

class SampleCombineEventStream8[T0, T1, T2, T3, T4, T5, T6, T7, Out](samplingStream: EventStream[T0], sampledSignal1: SignalSource[T1], sampledSignal2: SignalSource[T2], sampledSignal3: SignalSource[T3], sampledSignal4: SignalSource[T4], sampledSignal5: SignalSource[T5], sampledSignal6: SignalSource[T6], sampledSignal7: SignalSource[T7], combinator: (T0, T1, T2, T3, T4, T5, T6, T7) => Out) extends SampleCombineEventStreamN[Any, Out]
Value Params
combinator

Must not throw!

trait SyncObservable[Out]
trait EventStream[Out]
trait EventSource[Out]
trait Observable[Out]
trait BaseObservable[[A] =>> EventStream[A], Out]
trait Named
trait Source[Out]
class Object
trait Matchable
class Any

Value members

Inherited methods

override def addObserver(observer: Observer[Out])(owner: Owner): Subscription
Definition Classes
Inherited from
WritableObservable
def collect[B](pf: PartialFunction[Out, B]): EventStream[B]
Value Params
pf

Note: guarded against exceptions

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

See docs for DebounceEventStream

See docs for DebounceEventStream

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

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[Out]
Value Params
ms

milliseconds of delay

Inherited from
EventStream
def delaySync(after: EventStream[_]): EventStream[Out]

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: Out => Boolean): EventStream[Out]
Value Params
passes

Note: guarded against exceptions

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

Note: guarded against exceptions

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

Note: guarded against exceptions

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

Note: Must not throw!

Inherited from
EventStream
def foreach(onNext: Out => 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
override def map[B](project: Out => B): EventStream[B]
Definition Classes
Inherited from
EventStream
def mapTo[B](value: => B): EventStream[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): EventStream[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
override def recover[B >: Out](pf: PartialFunction[Throwable, Option[B]]): EventStream[B]

See docs for MapEventStream

See docs for MapEventStream

Value Params
pf

Note: guarded against exceptions

Definition Classes
Inherited from
EventStream
override def recoverToTry: EventStream[Try[Out]]
Definition Classes
Inherited from
EventStream
def setDisplayName(name: String): SampleCombineEventStream8[T0, T1, T2, T3, T4, T5, T6, T7, Out]

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
@inline
def startWith[B >: Out](initial: => B): Signal[B]
Inherited from
EventStream
@inline
def startWithNone: Signal[Option[Out]]
Inherited from
EventStream
@inline
def startWithTry[B >: Out](initial: => Try[B]): Signal[B]
Inherited from
EventStream
def throttle(ms: Int, leading: Boolean): EventStream[Out]

See docs for ThrottleEventStream

See docs for ThrottleEventStream

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

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
override protected val topoRank: Int