-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(publish): add higher-order lettable variant of publish
- Loading branch information
Showing
3 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { Subject } from '../Subject'; | ||
import { multicast } from './multicast'; | ||
import { MonoTypeOperatorFunction } from '../interfaces'; | ||
|
||
/* tslint:disable:max-line-length */ | ||
export function publish<T>(): MonoTypeOperatorFunction<T>; | ||
export function publish<T>(selector: MonoTypeOperatorFunction<T>): MonoTypeOperatorFunction<T>; | ||
/* 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<T>(selector?: MonoTypeOperatorFunction<T>): MonoTypeOperatorFunction<T> { | ||
return selector ? | ||
multicast(() => new Subject<T>(), selector) : | ||
multicast(new Subject<T>()); | ||
} |