Sha256: 0dd0d8c70b616135771e7f859401de2688b8c2c8babce6cba2298eac16dab272

Contents?: true

Size: 1 KB

Versions: 49

Compression:

Stored size: 1 KB

Contents

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(() => 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-16.21.0 node_modules/rxjs/_esm2015/operators/publish.js
govuk_publishing_components-16.20.1 node_modules/rxjs/_esm2015/operators/publish.js
govuk_publishing_components-16.20.0 node_modules/rxjs/_esm2015/operators/publish.js
govuk_publishing_components-16.19.0 node_modules/rxjs/_esm2015/operators/publish.js
govuk_publishing_components-16.18.0 node_modules/rxjs/_esm2015/operators/publish.js
govuk_publishing_components-16.17.0 node_modules/rxjs/_esm2015/operators/publish.js
locomotivecms-4.0.0.alpha1 app/javascript/node_modules/inquirer/node_modules/rxjs/_esm2015/operators/publish.js
locomotivecms-3.4.0 app/javascript/node_modules/rxjs/_esm2015/operators/publish.js
dragonfly_puppeteer-0.1.0 node_modules/rxjs/_esm2015/operators/publish.js