c

wvlet.airframe.rx

RxOptionCacheOp

case class RxOptionCacheOp[A](input: RxStreamCache[Option[A]]) extends RxOptionCache[A] with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, RxOptionCache[A], RxOption[A], Rx[Option[A]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RxOptionCacheOp
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. RxOptionCache
  7. RxOption
  8. Rx
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RxOptionCacheOp(input: RxStreamCache[Option[A]])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def cache[A1 >: A]: RxOptionCache[A1]
    Definition Classes
    RxOption
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def expireAfterWrite(time: Long, unit: TimeUnit): RxOptionCache[A]
    Definition Classes
    RxOptionCacheOpRxOptionCache
  9. def filter(f: (A) ⇒ Boolean): RxOption[A]
    Definition Classes
    RxOption
  10. def flatMap[B](f: (A) ⇒ Rx[B]): RxOption[B]
    Definition Classes
    RxOption
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def getCurrent: Option[A]
    Definition Classes
    RxOptionCacheOpRxOptionCache
  13. def getOrElse[A1 >: A](default: ⇒ A1): RxStream[A1]
    Definition Classes
    RxOption
  14. def getOrElseRx[A1 >: A](default: ⇒ Rx[A1]): RxStream[A1]
    Definition Classes
    RxOption
  15. def in: RxStream[Option[A]]
    Attributes
    protected
    Definition Classes
    RxOptionCacheOpRxOption
  16. val input: RxStreamCache[Option[A]]
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def map[B](f: (A) ⇒ B): RxOption[B]
    Definition Classes
    RxOption
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. def orElse[A1 >: A](default: ⇒ Option[A1]): RxOption[A1]
    Definition Classes
    RxOption
  23. def parents: Seq[Rx[_]]
    Definition Classes
    RxOptionCacheOpRx
  24. 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
  25. 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
  26. def run[U](effect: (Option[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
  27. def runContinuously[U](effect: (Option[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
  28. def subscribe[U](subscriber: (Option[A]) ⇒ U): Cancelable
    Definition Classes
    Rx
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. def toRxStream: RxStream[Option[A]]
    Definition Classes
    RxOptionRx
  31. def toSeq: Seq[Option[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
  32. def transform[B](f: (Option[A]) ⇒ B): RxStream[B]
    Definition Classes
    RxOption
  33. def transformOption[B](f: (Option[A]) ⇒ Option[B]): RxOption[B]
    Definition Classes
    RxOption
  34. def transformRx[B](f: (Option[A]) ⇒ Rx[B]): RxStream[B]
    Definition Classes
    RxOption
  35. def transformRxOption[B](f: (Option[A]) ⇒ RxOption[B]): RxOption[B]
    Definition Classes
    RxOption
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. def withFilter(f: (A) ⇒ Boolean): RxOption[A]
    Definition Classes
    RxOption
  40. def withTicker(ticker: Ticker): RxOptionCache[A]
    Definition Classes
    RxOptionCacheOpRxOptionCache

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from RxOptionCache[A]

Inherited from RxOption[A]

Inherited from Rx[Option[A]]

Inherited from AnyRef

Inherited from Any

Ungrouped