Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Connectable

An observable with a connect method that is used to create a subscription to an underlying source, connecting it with all consumers via a multicast.

interface Connectable <T> extends Observable<T> {
connect(): Subscription;
}

§Type Parameters

§Extends

§Methods

§

(Idempotent) Calling this method will connect the underlying source observable to all subscribed consumers through an underlying Subject.

@return

A subscription, that when unsubscribed, will "disconnect" the source from the connector subject, severing notifications to all consumers.