import { Subject } from '../Subject'; import { Observable } from '../Observable'; import { multicast } from './multicast'; import { ConnectableObservable } from '../observable/ConnectableObservable'; /* tslint:disable:max-line-length */ export function publish(this: Observable): ConnectableObservable; export function publish(this: Observable, selector: selector): Observable; /* tslint:disable: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. * * * * @param {Function} 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(this: Observable, selector?: (source: Observable) => Observable): Observable | ConnectableObservable { return selector ? multicast.call(this, () => new Subject(), selector) : multicast.call(this, new Subject()); } export type selector = (source: Observable) => Observable;