Class

wvlet.airframe.rx.Rx

Zip4Op

Related Doc: package Rx

Permalink

case class Zip4Op[A, B, C, D](a: Rx[A], b: Rx[B], c: Rx[C], d: Rx[D]) extends RxStream[(A, B, C, D)] with Product with Serializable

Linear Supertypes
Product, Equals, RxStream[(A, B, C, D)], LogSupport, LazyLogger, LoggingMethods, Serializable, Serializable, Rx[(A, B, C, D)], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Zip4Op
  2. Product
  3. Equals
  4. RxStream
  5. LogSupport
  6. LazyLogger
  7. LoggingMethods
  8. Serializable
  9. Serializable
  10. Rx
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Zip4Op(a: Rx[A], b: Rx[B], c: Rx[C], d: Rx[D])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val a: Rx[A]

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. val b: Rx[B]

    Permalink
  7. val c: Rx[C]

    Permalink
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  9. def concat[A1 >: (A, B, C, D)](other: Rx[A1]): RxStream[A1]

    Permalink
    Definition Classes
    RxStream
  10. val d: Rx[D]

    Permalink
  11. macro def debug(message: Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingMethods
  12. macro def debug(message: Any): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingMethods
  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. macro def error(message: Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingMethods
  15. macro def error(message: Any): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingMethods
  16. def filter(f: ((A, B, C, D)) ⇒ Boolean): RxStream[(A, B, C, D)]

    Permalink
    Definition Classes
    RxStream
  17. def flatMap[B](f: ((A, B, C, D)) ⇒ Rx[B]): RxStream[B]

    Permalink
    Definition Classes
    RxStream
  18. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  19. macro def info(message: Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingMethods
  20. macro def info(message: Any): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingMethods
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def join[B, C, D](b: Rx[B], c: Rx[C], d: Rx[D]): RxStream[((A, B, C, D), B, C, D)]

    Permalink
    Definition Classes
    RxStream
  23. def join[B, C](b: Rx[B], c: Rx[C]): RxStream[((A, B, C, D), B, C)]

    Permalink
    Definition Classes
    RxStream
  24. def join[B](other: Rx[B]): RxStream[((A, B, C, D), B)]

    Permalink

    Emit a new output if one of Rx[A] or Rx[B] is changed.

    Emit a new output if one of Rx[A] or Rx[B] is changed.

    This method is useful when you need to monitor multiple Rx objects.

    Using joins will be more intuitive than nesting multiple Rx operators like Rx[A].map { x => ... Rx[B].map { ...} }.

    Definition Classes
    RxStream
  25. def lastOption: RxOption[(A, B, C, D)]

    Permalink
    Definition Classes
    RxStream
  26. macro def logAt(logLevel: LogLevel, message: Any): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingMethods
  27. lazy val logger: Logger

    Permalink
    Attributes
    protected[this]
    Definition Classes
    LazyLogger
  28. def map[B](f: ((A, B, C, D)) ⇒ B): RxStream[B]

    Permalink
    Definition Classes
    RxStream
  29. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  30. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  31. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  32. def parents: Seq[Rx[_]]

    Permalink
    Definition Classes
    Zip4OpRx
  33. def recover[U](f: PartialFunction[Throwable, U]): RxStream[U]

    Permalink

    Recover from a known error and emit a replacement value

    Recover from a known error and emit a replacement value

    Definition Classes
    Rx
  34. def recoverWith[A](f: PartialFunction[Throwable, Rx[A]]): RxStream[A]

    Permalink

    Recover from a known error and emit replacement values from a given Rx

    Recover from a known error and emit replacement values from a given Rx

    Definition Classes
    Rx
  35. def run[U](effect: ((A, B, C, D)) ⇒ U): Cancelable

    Permalink

    Evaluate this Rx[A] and apply the given effect function.

    Evaluate this Rx[A] and apply the given effect function. Once OnError(e) or OnCompletion is observed, it will stop the evaluation.

    Definition Classes
    Rx
  36. def runContinuously[U](effect: ((A, B, C, D)) ⇒ U): Cancelable

    Permalink

    Keep evaluating Rx[A] even if OnError(e) or OnCompletion is reported.

    Keep evaluating Rx[A] even if OnError(e) or OnCompletion is reported. This is useful for keep processing streams.

    Definition Classes
    Rx
  37. def sample(timeWindow: Long, unit: TimeUnit = TimeUnit.MILLISECONDS): RxStream[(A, B, C, D)]

    Permalink

    Emit the most recent item of the source within periodic time intervals.

    Emit the most recent item of the source within periodic time intervals.

    Definition Classes
    RxStream
  38. def subscribe[U](subscriber: ((A, B, C, D)) ⇒ U): Cancelable

    Permalink
    Definition Classes
    Rx
  39. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  40. def take(n: Long): RxStream[(A, B, C, D)]

    Permalink

    Take an event up to n elements.

    Take an event up to n elements. This may receive fewer events than n if the upstream operator completes before generating n elements.

    Definition Classes
    RxStream
  41. def throttleFirst(timeWindow: Long, unit: TimeUnit = TimeUnit.MILLISECONDS): RxStream[(A, B, C, D)]

    Permalink

    Emit the first item of the source within each sampling period.

    Emit the first item of the source within each sampling period. This is useful, for example, to prevent double-clicks of buttons.

    Definition Classes
    RxStream
  42. def throttleLast(timeWindow: Long, unit: TimeUnit = TimeUnit.MILLISECONDS): RxStream[(A, B, C, D)]

    Permalink

    Emit the most recent item of the source within periodic time intervals.

    Emit the most recent item of the source within periodic time intervals.

    Definition Classes
    RxStream
  43. def toOption[X, A1 >: (A, B, C, D)](implicit ev: <:<[A1, Option[X]]): RxOption[X]

    Permalink
    Definition Classes
    RxStream
  44. def toRxStream: RxStream[(A, B, C, D)]

    Permalink
    Definition Classes
    RxStreamRx
  45. def toSeq: Seq[(A, B, C, D)]

    Permalink

    Materialize the stream as Seq[A].

    Materialize the stream as Seq[A]. This works only for the finite stream and for Scala JVM.

    Definition Classes
    Rx
  46. macro def trace(message: Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingMethods
  47. macro def trace(message: Any): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingMethods
  48. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. macro def warn(message: Any, cause: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingMethods
  52. macro def warn(message: Any): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    LoggingMethods
  53. def withFilter(f: ((A, B, C, D)) ⇒ Boolean): RxStream[(A, B, C, D)]

    Permalink
    Definition Classes
    RxStream
  54. def withName(name: String): RxStream[(A, B, C, D)]

    Permalink
    Definition Classes
    RxStream
  55. def zip[B, C, D](b: Rx[B], c: Rx[C], d: Rx[D]): RxStream[((A, B, C, D), B, C, D)]

    Permalink
    Definition Classes
    RxStream
  56. def zip[B, C](b: Rx[B], c: Rx[C]): RxStream[((A, B, C, D), B, C)]

    Permalink
    Definition Classes
    RxStream
  57. def zip[B](other: Rx[B]): RxStream[((A, B, C, D), B)]

    Permalink

    Combine two Rx streams to form a sequence of pairs.

    Combine two Rx streams to form a sequence of pairs. This will emit a new pair when both of the streams are updated.

    Definition Classes
    RxStream

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from Product

Inherited from Equals

Inherited from RxStream[(A, B, C, D)]

Inherited from LogSupport

Inherited from LazyLogger

Inherited from LoggingMethods

Inherited from Serializable

Inherited from Serializable

Inherited from Rx[(A, B, C, D)]

Inherited from AnyRef

Inherited from Any

Ungrouped