Hub

object Hub
Companion:
class
class Object
trait Matchable
class Any
Hub.type

Type members

Classlikes

abstract class Subscription[A] extends Serializable

A Subscription[A] is a subscription to receive A values from the hub. The guarantee is that a subscriber will receive all values published to hub while it is subscribed.

A Subscription[A] is a subscription to receive A values from the hub. The guarantee is that a subscriber will receive all values published to hub while it is subscribed.

Value members

Concrete methods

def bounded[A](requestedCapacity: Int): Hub[A]

Constructs a new bounded hub with the requested capacity.

Constructs a new bounded hub with the requested capacity.

def unbounded[A]: Hub[A]

Constructs a new unbounded hub.

Constructs a new unbounded hub.