Pipe

object Pipe
Companion
class
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply[A](strategy: MulticastStrategy[A]): Pipe[A, A]

Given a MulticastStrategy returns the corresponding Pipe.

Given a MulticastStrategy returns the corresponding Pipe.

def async[A]: Pipe[A, A]

Subject recipe for building AsyncSubject instances.

Subject recipe for building AsyncSubject instances.

def behavior[A](initial: A): Pipe[A, A]

Subject recipe for building BehaviorSubject instances.

Subject recipe for building BehaviorSubject instances.

def publish[A]: Pipe[A, A]

Subject recipe for building PublishSubject instances.

Subject recipe for building PublishSubject instances.

def publishToOne[A]: Pipe[A, A]

Subject recipe for building PublishToOneSubject instances.

Subject recipe for building PublishToOneSubject instances.

def replay[A]: Pipe[A, A]

Subject recipe for building unbounded monix.reactive.subjects. instances.

Subject recipe for building unbounded monix.reactive.subjects. instances.

def replay[A](initial: Seq[A]): Pipe[A, A]

Subject recipe for building unbounded ReplaySubject instances.

Subject recipe for building unbounded ReplaySubject instances.

Value Params
initial

is an initial sequence of elements that will be pushed to subscribers before any elements emitted by the source.

def replayLimited[A](capacity: Int): Pipe[A, A]

Subject recipe for building ReplaySubject instances with a maximum capacity (after which old items start being dropped).

Subject recipe for building ReplaySubject instances with a maximum capacity (after which old items start being dropped).

Value Params
capacity

indicates the minimum capacity of the underlying buffer, with the implementation being free to increase it.

def replayLimited[A](capacity: Int, initial: Seq[A]): Pipe[A, A]

Subject recipe for building ReplaySubject instances with a maximum capacity (after which old items start being dropped).

Subject recipe for building ReplaySubject instances with a maximum capacity (after which old items start being dropped).

Value Params
capacity

indicates the minimum capacity of the underlying buffer, with the implementation being free to increase it.

initial

is an initial sequence of elements that will be pushed to subscribers before any elements emitted by the source.