trait RxOption[+A] extends Rx[Option[A]]

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

Abstract Value Members

  1. abstract def in: RxStream[Option[A]]
    Attributes
    protected
  2. abstract def parents: Seq[Rx[_]]
    Definition Classes
    Rx

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]
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def filter(f: (A) => Boolean): RxOption[A]
  10. def flatMap[B](f: (A) => Rx[B]): RxOption[B]
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def getOrElse[A1 >: A](default: => A1): RxStream[A1]
  13. def getOrElseRx[A1 >: A](default: => Rx[A1]): RxStream[A1]
  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]
  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]
  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]
  31. def transformOption[B](f: (Option[A]) => Option[B]): RxOption[B]
  32. def transformRx[B](f: (Option[A]) => Rx[B]): RxStream[B]
  33. def transformRxOption[B](f: (Option[A]) => RxOption[B]): RxOption[B]
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. def withFilter(f: (A) => Boolean): RxOption[A]

Deprecated Value Members

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

Inherited from Rx[Option[A]]

Inherited from AnyRef

Inherited from Any

Ungrouped