Sha256: d5d81243269b3bfe7832a177263478388fd7dad0018e2739f00e1c919fc2a910

Contents?: true

Size: 1.08 KB

Versions: 49

Compression:

Stored size: 1.08 KB

Contents

/** PURE_IMPORTS_START .._Subject,._multicast PURE_IMPORTS_END */
import { Subject } from '../Subject';
import { multicast } from './multicast';
/* tslint:enable:max-line-length */
/**
 * Returns a ConnectableObservable, which is a variety of Observable that waits until its connect method is called
 * before it begins emitting items to those Observers that have subscribed to it.
 *
 * <img src="./img/publish.png" width="100%">
 *
 * @param {Function} [selector] - Optional selector function which can use the multicasted source sequence as many times
 * as needed, without causing multiple subscriptions to the source sequence.
 * Subscribers to the given source will receive all notifications of the source from the time of the subscription on.
 * @return A ConnectableObservable that upon connection causes the source Observable to emit items to its Observers.
 * @method publish
 * @owner Observable
 */
export function publish(selector) {
    return selector ?
        multicast(function () { return new Subject(); }, selector) :
        multicast(new Subject());
}
//# sourceMappingURL=publish.js.map

Version data entries

49 entries across 49 versions & 4 rubygems

Version Path
govuk_publishing_components-17.8.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-17.7.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-17.6.1 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-17.6.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-17.5.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-17.4.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-17.3.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-17.2.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-17.1.1 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-17.1.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-17.0.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-16.29.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-16.28.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-16.27.1 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-16.27.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-16.26.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-16.25.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-16.24.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-16.23.0 node_modules/rxjs/_esm5/operators/publish.js
govuk_publishing_components-16.22.0 node_modules/rxjs/_esm5/operators/publish.js