org

reactivestreams

package reactivestreams

Visibility
  1. Public
  2. All

Type Members

  1. trait Publisher[T] extends Any

    Mirrors the Publisher interface from the Reactive Streams project.

  2. trait Subscriber[T] extends AnyRef

    Mirrors the Subscriber interface from the Reactive Streams project.

  3. trait Subscription extends AnyRef

    Represents a one-to-one lifecycle of a Subscriber subscribing to a Publisher and mirrors the Subscription interface from the Reactive Streams specification.

    Represents a one-to-one lifecycle of a Subscriber subscribing to a Publisher and mirrors the Subscription interface from the Reactive Streams specification.

    It can be used only once by a single Subscriber. It is used for both signaling demand for data and for canceling demand (and allow resource cleanup).

Ungrouped