##// END OF EJS Templates
Implemented subscription SubscriptionImpl, fixed subscription resource management
Implemented subscription SubscriptionImpl, fixed subscription resource management

File last commit:

r146:af4f8424e83d v1.9.0 default
r158:078eca3dc271 v1.10.3 default
Show More
subject.ts
60 lines | 2.2 KiB | video/mp2t | TypeScriptLexer
import { Observable, Sink, Subscribable, observe } from "../observable";
const noop = () => { };
/** Connects multiple subscribers to the single producer. The producer
* will be created when the first client subscribes and will be released
* with the the last client unsubscribed.
*
* Use this wrapper to prevent spawning multiple producers.
*
* The emitted values are not cached therefore new subscribers will not receive
* the values emitted before they had subscribed.
*
* @param source The source observable
* @returns The new observable
*/
export const subject = <T>(source: Subscribable<T>): Observable<T> => {
let subscribers: Sink<T>[] = []; // the list of active subscribers
let subscription = { unsubscribe: noop }; // current subscription
// cleanup method to release resources held by this subscription
const cleanup = (cb: (item: Sink<T>) => void) => {
const _subscribers = subscribers;
subscribers = []; // this will prevent a client cleanup login to run
_subscribers.forEach(cb);
// we don't need subscription.unsubscribe(), because cleanup is called
// from complete or error methods.
};
const sink: Sink<T> = {
isClosed: () => false,
complete: () => cleanup(s => s.complete()),
error: e => cleanup(s => s.error(e)),
next: v => subscribers.forEach(s => s.next(v))
};
return observe(client => {
const _subscribers = subscribers;
subscribers.push(client);
if (subscribers.length === 1) // this is the first client
subscription = source.subscribe(sink); // activate the producer
return () => {
// this is a cleanup logic for an individual client
if (_subscribers === subscribers) {
// is the current subscription to the producer is active
// find this client in the list of subscribers
const pos = subscribers.indexOf(client);
if (pos >= 0)
subscribers.splice(pos, 1);
// is this is the last subscriber we need to release the producer
if (!subscribers.length)
subscription.unsubscribe();
}
};
});
};