Class

wvlet.airframe.rx

RxOptionOp

Related Doc: package rx

Permalink

case class RxOptionOp[+A](in: RxStream[Option[A]]) extends RxOption[A] with Product with Serializable

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

Instance Constructors

  1. new RxOptionOp(in: RxStream[Option[A]])

    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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def filter(f: (A) ⇒ Boolean): RxOption[A]

    Permalink
    Definition Classes
    RxOption
  8. def flatMap[B](f: (A) ⇒ Rx[B]): RxOption[B]

    Permalink
    Definition Classes
    RxOption
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  10. def getOrElse[A1 >: A](default: ⇒ A1): RxStream[A1]

    Permalink
    Definition Classes
    RxOption
  11. def getOrElseRx[A1 >: A](default: ⇒ Rx[A1]): RxStream[A1]

    Permalink
    Definition Classes
    RxOption
  12. val in: RxStream[Option[A]]

    Permalink
    Attributes
    protected
    Definition Classes
    RxOptionOpRxOption
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. def map[B](f: (A) ⇒ B): RxOption[B]

    Permalink
    Definition Classes
    RxOption
  15. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  18. def orElse[A1 >: A](default: ⇒ Option[A1]): RxOption[A1]

    Permalink
    Definition Classes
    RxOption
  19. def parents: Seq[Rx[_]]

    Permalink
    Definition Classes
    RxOptionOpRx
  20. 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
  21. 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
  22. def run[U](effect: (Option[A]) ⇒ 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
  23. def runContinuously[U](effect: (Option[A]) ⇒ 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
  24. def subscribe[U](subscriber: (Option[A]) ⇒ U): Cancelable

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

    Permalink
    Definition Classes
    AnyRef
  26. def toRxStream: RxStream[Option[A]]

    Permalink
    Definition Classes
    RxOptionRx
  27. def toSeq: Seq[Option[A]]

    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
  28. def transform[B](f: (Option[A]) ⇒ B): RxStream[B]

    Permalink
    Definition Classes
    RxOption
  29. def transformOption[B](f: (Option[A]) ⇒ Option[B]): RxOption[B]

    Permalink
    Definition Classes
    RxOption
  30. def transformRx[B](f: (Option[A]) ⇒ Rx[B]): RxStream[B]

    Permalink
    Definition Classes
    RxOption
  31. final def wait(arg0: Long, arg1: Int): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def withFilter(f: (A) ⇒ Boolean): RxOption[A]

    Permalink
    Definition Classes
    RxOption

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 Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from RxOption[A]

Inherited from Rx[Option[A]]

Inherited from AnyRef

Inherited from Any

Ungrouped