Packages

case class Replay[A](initial: Seq[A]) extends MulticastStrategy[A] with Product with Serializable

The Replay strategy is for building multicast observables that repeat all the generated items by the source, regardless of when the source is subscribed.

Corresponds to Pipe.replay.

Source
MulticastStrategy.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Replay
  2. Product
  3. Equals
  4. MulticastStrategy
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Replay(initial: Seq[A])

Value Members

  1. val initial: Seq[A]
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product