Packages

object Observable

A companion object for Observable

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Observable
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply[A](from: Iterable[A]): Observable[A]

    Creates an Observable from an Iterable.

    Creates an Observable from an Iterable.

    Convenient for testing and or debugging.

    A

    the type of Iterable

    from

    the iterable to create the observable from

    returns

    an Observable that emits each item from the Iterable