t

wvlet.airframe.rx

RxOptionCache

trait RxOptionCache[A] extends RxOption[A]

An interface for enriching RxOption[A] with caching capability

Linear Supertypes
RxOption[A], Rx[Option[A]], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RxOptionCache
  2. RxOption
  3. Rx
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def expireAfterWrite(time: Long, unit: TimeUnit): RxOptionCache[A]
  2. abstract def getCurrent: Option[A]
  3. abstract def in: RxStream[Option[A]]
    Attributes
    protected
    Definition Classes
    RxOption
  4. abstract def parents: Seq[Rx[_]]
    Definition Classes
    Rx
  5. abstract def withTicker(ticker: Ticker): RxOptionCache[A]

Concrete 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 equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  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 getOrElse[A1 >: A](default: ⇒ A1): RxStream[A1]
    Definition Classes
    RxOption
  13. def getOrElseRx[A1 >: A](default: ⇒ Rx[A1]): RxStream[A1]
    Definition Classes
    RxOption
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. def map[B](f: (A) ⇒ B): RxOption[B]
    Definition Classes
    RxOption
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def orElse[A1 >: A](default: ⇒ Option[A1]): RxOption[A1]
    Definition Classes
    RxOption
  21. 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
  22. 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
  23. 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
  24. 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
  25. def subscribe[U](subscriber: (Option[A]) ⇒ U): Cancelable
    Definition Classes
    Rx
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toRxStream: RxStream[Option[A]]
    Definition Classes
    RxOptionRx
  28. 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
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. def transform[B](f: (Option[A]) ⇒ B): RxStream[B]
    Definition Classes
    RxOption
  31. def transformOption[B](f: (Option[A]) ⇒ Option[B]): RxOption[B]
    Definition Classes
    RxOption
  32. def transformRx[B](f: (Option[A]) ⇒ Rx[B]): RxStream[B]
    Definition Classes
    RxOption
  33. def transformRxOption[B](f: (Option[A]) ⇒ RxOption[B]): RxOption[B]
    Definition Classes
    RxOption
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def withFilter(f: (A) ⇒ Boolean): RxOption[A]
    Definition Classes
    RxOption

Deprecated Value Members

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

Inherited from RxOption[A]

Inherited from Rx[Option[A]]

Inherited from AnyRef

Inherited from Any

Ungrouped