@reactivex/rxjs
Version:
Reactive Extensions for modern JavaScript
16 lines • 606 B
JavaScript
import { Subject } from '../Subject';
import { multicast } from './multicast';
/**
* 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%">
*
* @return a ConnectableObservable that upon connection causes the source Observable to emit items to its Observers.
* @method publish
* @owner Observable
*/
export function publish() {
return multicast.call(this, new Subject());
}
//# sourceMappingURL=publish.js.map