UNPKG

@reactivex/rxjs

Version:

Reactive Extensions for modern JavaScript

22 lines (21 loc) 1.16 kB
import { Observable } from '../Observable'; import { ConnectableObservable } from '../observable/ConnectableObservable'; /** * 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} 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 declare function publish<T>(selector?: (source: Observable<T>) => Observable<T>): Observable<T> | ConnectableObservable<T>; export declare type selector<T> = (source: Observable<T>) => Observable<T>; export interface PublishSignature<T> { (): ConnectableObservable<T>; (selector: selector<T>): Observable<T>; }