class RxVar[A] extends RxStream[A] with RxVarOps[A]

A reactive variable supporting update and propagation of the updated value to the chained operators

Linear Supertypes
RxVarOps[A], RxStream[A], LogSupport, LazyLogger, LoggingMethods, Serializable, Rx[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RxVar
  2. RxVarOps
  3. RxStream
  4. LogSupport
  5. LazyLogger
  6. LoggingMethods
  7. Serializable
  8. Rx
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RxVar(currentValue: A)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def :=(newValue: A): Unit
    Definition Classes
    RxVarOps
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def andThen[B](f: (A) => Future[B])(implicit ex: ExecutionContext): RxStream[B]

    Combine Rx stream and Future operators.

    Combine Rx stream and Future operators.

    This method is useful when you need to call RPC multiple times and chain the next operation after receiving the response.

    Rx.intervalMillis(1000)
      .andThen { i => callRpc(...) } // Returns Future
      .map { (rpcReturnValue) => ... } // Use the Future response
    Definition Classes
    RxStream
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def cache[A1 >: A]: RxStreamCache[A1]

    Cache the last item, and emit the cached value if available.

    Cache the last item, and emit the cached value if available.

    The cached value will be preserved to the operator itself even after cancelling the subscription. Re-subscription of this operator will immediately return the cached value to the downstream operator.

    This operator is useful if we need to involve time-consuming process, and want to reuse the last result: val v = Rx.intervalMillis(1000).map(i => (heavy process)).cache v.map { x => ... }

    Definition Classes
    RxStream
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  9. def concat[A1 >: A](other: Rx[A1]): RxStream[A1]
    Definition Classes
    RxStream
  10. macro def debug(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  11. macro def debug(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. macro def error(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  15. macro def error(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  16. def filter(f: (A) => Boolean): RxStream[A]
    Definition Classes
    RxStream
  17. def flatMap[B](f: (A) => Rx[B]): RxStream[B]
    Definition Classes
    RxStream
  18. def forceSet(newValue: A): Unit
    Definition Classes
    RxVarOps
  19. def forceUpdate(updater: (A) => A): Unit

    Update the variable and force notification to subscribers

    Update the variable and force notification to subscribers

    Definition Classes
    RxVarOps
  20. def foreach[U](f: (A) => U): Cancelable
    Definition Classes
    RxVarRxVarOps
  21. def foreachEvent[U](effect: (RxEvent) => U): Cancelable
    Definition Classes
    RxVarRxVarOps
  22. def get: A
    Definition Classes
    RxVarRxVarOps
  23. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  24. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  25. macro def info(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  26. macro def info(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. def join[B, C, D](b: Rx[B], c: Rx[C], d: Rx[D]): RxStream[(A, B, C, D)]
    Definition Classes
    RxStream
  29. def join[B, C](b: Rx[B], c: Rx[C]): RxStream[(A, B, C)]
    Definition Classes
    RxStream
  30. def join[B](other: Rx[B]): RxStream[(A, B)]

    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
  31. def lastOption: RxOption[A]
    Definition Classes
    RxStream
  32. macro def logAt(logLevel: LogLevel, message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  33. lazy val logger: Logger
    Attributes
    protected[this]
    Definition Classes
    LazyLogger
  34. def map[B](f: (A) => B): RxStream[B]
    Definition Classes
    RxStream
  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  37. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  38. def parents: Seq[Rx[_]]
    Definition Classes
    RxVarRx
  39. def recover[U](f: PartialFunction[Throwable, U]): RxStream[U]

    Recover from a known error and emit a replacement value

    Recover from a known error and emit a replacement value

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

    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
  41. def run[U](effect: (A) => U): Cancelable

    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
  42. def runContinuously[U](effect: (A) => U): Cancelable

    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
  43. def sample(timeWindow: Long, unit: TimeUnit = TimeUnit.MILLISECONDS): RxStream[A]

    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
  44. def set(newValue: A): Unit
    Definition Classes
    RxVarOps
  45. def setException(e: Throwable): Unit

    Propagate an error to the subscribers

    Propagate an error to the subscribers

    Definition Classes
    RxVarRxVarOps
  46. def startWith[A1 >: A](lst: Seq[A1]): RxStream[A1]

    Emit the given items first before returning the items from the source.

    Emit the given items first before returning the items from the source.

    Definition Classes
    RxStream
  47. def startWith[A1 >: A](a: A1): RxStream[A1]

    Emit the given item first before returning the items from the source.

    Emit the given item first before returning the items from the source.

    Definition Classes
    RxStream
  48. def subscribe[U](subscriber: (A) => U): Cancelable
    Definition Classes
    Rx
  49. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  50. def take(n: Long): RxStream[A]

    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
  51. def throttleFirst(timeWindow: Long, unit: TimeUnit = TimeUnit.MILLISECONDS): RxStream[A]

    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
  52. def throttleLast(timeWindow: Long, unit: TimeUnit = TimeUnit.MILLISECONDS): RxStream[A]

    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
  53. def toOption[X, A1 >: A](implicit ev: <:<[A1, Option[X]]): RxOptionVar[X]
    Definition Classes
    RxVarRxStream
  54. def toRxStream: RxStream[A]
    Definition Classes
    RxStreamRx
  55. def toSeq: Seq[A]

    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
  56. def toString(): String
    Definition Classes
    RxVar → AnyRef → Any
  57. macro def trace(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  58. macro def trace(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  59. def update(updater: (A) => A, force: Boolean = false): Unit

    Updates the variable and trigger the recalculation of the subscribers currentValue => newValue

    Updates the variable and trigger the recalculation of the subscribers currentValue => newValue

    Definition Classes
    RxVarRxVarOps
  60. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  61. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  62. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  63. macro def warn(message: Any, cause: Throwable): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  64. macro def warn(message: Any): Unit
    Attributes
    protected
    Definition Classes
    LoggingMethods
  65. def withFilter(f: (A) => Boolean): RxStream[A]
    Definition Classes
    RxStream
  66. def withName(name: String): RxStream[A]
    Definition Classes
    RxStream
  67. def zip[B, C, D](b: Rx[B], c: Rx[C], d: Rx[D]): RxStream[(A, B, C, D)]
    Definition Classes
    RxStream
  68. def zip[B, C](b: Rx[B], c: Rx[C]): RxStream[(A, B, C)]
    Definition Classes
    RxStream
  69. def zip[B](other: Rx[B]): RxStream[(A, B)]

    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
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from RxVarOps[A]

Inherited from RxStream[A]

Inherited from LogSupport

Inherited from LazyLogger

Inherited from LoggingMethods

Inherited from Serializable

Inherited from Rx[A]

Inherited from AnyRef

Inherited from Any

Ungrouped