Packages

object CachedObservable extends Serializable

Source
CachedObservable.scala
Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CachedObservable
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def create[A](observable: Observable[A], maxCapacity: Int): Observable[A]

    Builder for CachedObservable

    Builder for CachedObservable

    observable

    - is the observable we are wrapping

    maxCapacity

    - the buffer capacity, with old elements being dropped on overflow

  2. def create[A](observable: Observable[A]): Observable[A]

    Builder for CachedObservable

    Builder for CachedObservable

    observable

    - is the observable we are wrapping