monifu.reactive

api

package api

Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Ack extends AnyRef

    Represents the acknowledgement of processing that a consumer sends back upstream on Observer.onNext

  2. sealed trait AckIsFuture[T <: Ack] extends Future[T]

  3. class BufferOverflowException extends RuntimeException

  4. sealed trait BufferPolicy extends AnyRef

    Represents the buffering policy chosen for actions that need buffering, instructing the pipeline what to do when the buffer is full.

    Represents the buffering policy chosen for actions that need buffering, instructing the pipeline what to do when the buffer is full.

    For the available policies, see:

    - Unbounded - OverflowTriggering - BackPressured

    Used in BufferedObserver to implement buffering when concurrent actions are needed, such as in Channels or in Observable.merge.

  5. trait ConnectableObservable[+T] extends Observable[T]

    Represents an Observable that waits for the call to connect() before starting to emit elements to its subscriber(s).

    Represents an Observable that waits for the call to connect() before starting to emit elements to its subscriber(s).

    Useful for converting cold observables into hot observables and thus returned by Observable.multicast.

  6. trait Notification[+T] extends AnyRef

    Used by Observable.materialize.

Value Members

  1. object Ack

  2. object BufferPolicy

  3. object Notification

Ungrouped