monifu.rx

Observable

object Observable

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Observable
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. implicit def FutureIsAsyncObservable[T](future: Future[T])(implicit scheduler: Scheduler): Observable[T]

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def continuous[T](elem: T)(implicit scheduler: Scheduler): Observable[T]

    Creates an Observable that continously emits the given item

  10. def create[T](f: (Observer[T]) ⇒ Cancelable)(implicit scheduler: Scheduler): Observable[T]

    Observable constructor.

    Observable constructor. To be used for implementing new Observables and operators.

  11. def empty[A](implicit scheduler: Scheduler): Observable[A]

  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  14. def error(ex: Throwable)(implicit scheduler: Scheduler): Observable[Nothing]

    Creates an Observable that emits an error.

  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. def flatten[T](sources: Observable[T]*)(implicit scheduler: Scheduler): Observable[T]

    Merges the given list of observables into a single observable.

  17. def fromIterable[T](iterable: Iterable[T])(implicit scheduler: Scheduler): Observable[T]

    Creates an Observable that emits the elements of the given sequence

  18. def fromIterable[T](iterable: Iterable[T])(implicit scheduler: Scheduler): Observable[T]

  19. def fromSequence[T](seq: Seq[T])(implicit scheduler: Scheduler): Observable[T]

    Creates an Observable that emits the elements of the given sequence

  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. def interval(initialDelay: FiniteDuration, period: FiniteDuration)(implicit scheduler: Scheduler): Observable[Long]

    Creates an Observable that emits auto-incremented natural numbers with a fixed delay, starting from number 1.

    Creates an Observable that emits auto-incremented natural numbers with a fixed delay, starting from number 1.

    initialDelay

    the initial delay to wait before the first emitted number

    period

    the delay between two subsequent events

    scheduler

    the execution context in which onNext will get called

  23. def interval(period: FiniteDuration)(implicit scheduler: Scheduler): Observable[Long]

    Creates an Observable that emits auto-incremented natural numbers with a fixed delay, starting from number 1.

    Creates an Observable that emits auto-incremented natural numbers with a fixed delay, starting from number 1.

    period

    the delay between two emitted events

    scheduler

    the execution context in which onNext will get called

  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  26. def never(implicit scheduler: Scheduler): Observable[Nothing]

    Creates an Observable that doesn't emit anything and that never completes.

  27. final def notify(): Unit

    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  30. def toString(): String

    Definition Classes
    AnyRef → Any
  31. def unit[A](elem: A)(implicit scheduler: Scheduler): Observable[A]

    Creates an Observable that only emits the given a

  32. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped