Skip to main content Link Search Menu Expand Document (external link)

Hub overview

Added in v1.0.0


Table of contents


constructors

bounded

Creates a bounded hub with the back pressure strategy. The hub will retain messages until they have been taken by all subscribers, applying back pressure to publishers if the hub is at capacity.

For best performance use capacities that are powers of two.

Signature

export declare const bounded: <A>(requestedCapacity: number) => Effect.Effect<never, never, Hub<A>>

Added in v1.0.0

dropping

Creates a bounded hub with the dropping strategy. The hub will drop new messages if the hub is at capacity.

For best performance use capacities that are powers of two.

Signature

export declare const dropping: <A>(requestedCapacity: number) => Effect.Effect<never, never, Hub<A>>

Added in v1.0.0

sliding

Creates a bounded hub with the sliding strategy. The hub will add new messages and drop old messages if the hub is at capacity.

For best performance use capacities that are powers of two.

Signature

export declare const sliding: <A>(requestedCapacity: number) => Effect.Effect<never, never, Hub<A>>

Added in v1.0.0

unbounded

Creates an unbounded hub.

Signature

export declare const unbounded: <A>() => Effect.Effect<never, never, Hub<A>>

Added in v1.0.0

getters

capacity

Returns the number of elements the queue can hold.

Signature

export declare const capacity: <A>(self: Hub<A>) => number

Added in v1.0.0

isEmpty

Returns true if the Queue contains zero elements, false otherwise.

Signature

export declare const isEmpty: <A>(self: Hub<A>) => Effect.Effect<never, never, boolean>

Added in v1.0.0

isFull

Returns true if the Queue contains at least one element, false otherwise.

Signature

export declare const isFull: <A>(self: Hub<A>) => Effect.Effect<never, never, boolean>

Added in v1.0.0

isShutdown

Returns true if shutdown has been called, otherwise returns false.

Signature

export declare const isShutdown: <A>(self: Hub<A>) => Effect.Effect<never, never, boolean>

Added in v1.0.0

size

Retrieves the size of the queue, which is equal to the number of elements in the queue. This may be negative if fibers are suspended waiting for elements to be added to the queue.

Signature

export declare const size: <A>(self: Hub<A>) => Effect.Effect<never, never, number>

Added in v1.0.0

models

Hub (interface)

A Hub<A> is an asynchronous message hub into which publishers can publish messages of type A and subscribers can subscribe to take messages of type A.

Signature

export interface Hub<A> extends Queue.Enqueue<A>, Pipeable {
  /**
   * Publishes a message to the hub, returning whether the message was published
   * to the hub.
   */
  publish(value: A): Effect.Effect<never, never, boolean>

  /**
   * Publishes all of the specified messages to the hub, returning whether they
   * were published to the hub.
   */
  publishAll(elements: Iterable<A>): Effect.Effect<never, never, boolean>

  /**
   * Subscribes to receive messages from the hub. The resulting subscription can
   * be evaluated multiple times within the scope to take a message from the hub
   * each time.
   */
  subscribe(): Effect.Effect<Scope.Scope, never, Queue.Dequeue<A>>
}

Added in v1.0.0

utils

awaitShutdown

Waits until the queue is shutdown. The Effect returned by this method will not resume until the queue has been shutdown. If the queue is already shutdown, the Effect will resume right away.

Signature

export declare const awaitShutdown: <A>(self: Hub<A>) => Effect.Effect<never, never, void>

Added in v1.0.0

publish

Publishes a message to the hub, returning whether the message was published to the hub.

Signature

export declare const publish: {
  <A>(value: A): (self: Hub<A>) => Effect.Effect<never, never, boolean>
  <A>(self: Hub<A>, value: A): Effect.Effect<never, never, boolean>
}

Added in v1.0.0

publishAll

Publishes all of the specified messages to the hub, returning whether they were published to the hub.

Signature

export declare const publishAll: {
  <A>(elements: Iterable<A>): (self: Hub<A>) => Effect.Effect<never, never, boolean>
  <A>(self: Hub<A>, elements: Iterable<A>): Effect.Effect<never, never, boolean>
}

Added in v1.0.0

shutdown

Interrupts any fibers that are suspended on offer or take. Future calls to offer* and take* will be interrupted immediately.

Signature

export declare const shutdown: <A>(self: Hub<A>) => Effect.Effect<never, never, void>

Added in v1.0.0

subscribe

Subscribes to receive messages from the hub. The resulting subscription can be evaluated multiple times within the scope to take a message from the hub each time.

Signature

export declare const subscribe: <A>(self: Hub<A>) => Effect.Effect<Scope.Scope, never, Queue.Dequeue<A>>

Added in v1.0.0