Packages

object ReplaySubject extends Serializable

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

Value Members

  1. def apply[T](initial: T*): ReplaySubject[T]

    Creates an unbounded replay subject.

  2. def create[T](initial: Seq[T]): ReplaySubject[T]

    Creates an unbounded replay subject.

  3. def createLimited[T](capacity: Int, initial: Seq[T]): ReplaySubject[T]

    Creates a size-bounded replay subject, prepopulated.

    Creates a size-bounded replay subject, prepopulated.

    In this setting, the ReplaySubject holds at most size items in its internal buffer and discards the oldest item.

    capacity

    is the maximum size of the internal buffer

    initial

    is an initial sequence of elements to prepopulate the buffer

  4. def createLimited[T](capacity: Int): ReplaySubject[T]

    Creates a size-bounded replay subject.

    Creates a size-bounded replay subject.

    In this setting, the ReplaySubject holds at most size items in its internal buffer and discards the oldest item.

    capacity

    is the maximum size of the internal buffer