Packages

object MulticastStrategy extends Serializable

The MulticastStrategy enumerated.

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

Type Members

  1. case class Behavior[A](initial: A) extends MulticastStrategy[A] with Product with Serializable

    The Behavior strategy is for building multicast observables that emit the most recently emitted item by the source before the source starts being mirrored.

    The Behavior strategy is for building multicast observables that emit the most recently emitted item by the source before the source starts being mirrored.

    Corresponds to Pipe.behavior.

  2. 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.

    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.

  3. case class ReplayLimited[A](capacity: Int, initial: Seq[A]) extends MulticastStrategy[A] with Product with Serializable

    The ReplayLimited strategy is for building multicast observables that repeat the generated items by the source, but limited by the maximum size of the underlying buffer.

    The ReplayLimited strategy is for building multicast observables that repeat the generated items by the source, but limited by the maximum size of the underlying buffer.

    When maximum size is reached, the underlying buffer starts dropping older events. Note that the size of the resulting buffer is not necessarily the given capacity, as the implementation may choose to increase it for optimisation purposes.

    Corresponds to Pipe.replayLimited.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def async[A]: MulticastStrategy[A]

    The Async strategy is for building multicast observables that emit the last value (and only the last value) of the source and only after the source completes.

    The Async strategy is for building multicast observables that emit the last value (and only the last value) of the source and only after the source completes.

    Corresponds to Pipe.async.

  6. def behavior[A](initial: A): MulticastStrategy[A]

    The Behavior strategy is for building multicast observables that emit the most recently emitted item by the source before the source starts being mirrored.

    The Behavior strategy is for building multicast observables that emit the most recently emitted item by the source before the source starts being mirrored.

    Corresponds to Pipe.behavior.

  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def publish[A]: MulticastStrategy[A]

    The Publish strategy is for emitting to a subscriber only those items that are emitted by the source subsequent to the time of the subscription.

    The Publish strategy is for emitting to a subscriber only those items that are emitted by the source subsequent to the time of the subscription.

    Corresponds to Pipe.publish.

  17. def replay[A](initial: Seq[A]): MulticastStrategy[A]

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

    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.

  18. def replay[A]: MulticastStrategy[A]

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

    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.

  19. def replayLimited[A](capacity: Int, initial: Seq[A]): MulticastStrategy[A]

    The ReplayLimited strategy is for building multicast observables that repeat the generated items by the source, but limited by the maximum size of the underlying buffer.

    The ReplayLimited strategy is for building multicast observables that repeat the generated items by the source, but limited by the maximum size of the underlying buffer.

    When maximum size is reached, the underlying buffer starts dropping older events. Note that the size of the resulting buffer is not necessarily the given capacity, as the implementation may choose to increase it for optimisation purposes.

    Corresponds to Pipe.replayLimited.

  20. def replayLimited[A](capacity: Int): MulticastStrategy[A]

    The ReplayLimited strategy is for building multicast observables that repeat the generated items by the source, but limited by the maximum size of the underlying buffer.

    The ReplayLimited strategy is for building multicast observables that repeat the generated items by the source, but limited by the maximum size of the underlying buffer.

    When maximum size is reached, the underlying buffer starts dropping older events. Note that the size of the resulting buffer is not necessarily the given capacity, as the implementation may choose to increase it for optimisation purposes.

    Corresponds to Pipe.replayLimited.

  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. case object Async extends MulticastStrategy[Nothing] with Product with Serializable

    The Async strategy is for building multicast observables that emit the last value (and only the last value) of the source and only after the source completes.

    The Async strategy is for building multicast observables that emit the last value (and only the last value) of the source and only after the source completes.

    Corresponds to Pipe.async.

  27. case object Publish extends MulticastStrategy[Nothing] with Product with Serializable

    The Publish strategy is for emitting to a subscriber only those items that are emitted by the source subsequent to the time of the subscription.

    The Publish strategy is for emitting to a subscriber only those items that are emitted by the source subsequent to the time of the subscription.

    Corresponds to Pipe.publish.

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped