@reactivex/rxjs
Version:
Reactive Extensions for modern JavaScript
46 lines (37 loc) • 984 B
text/typescript
import {Operator} from '../Operator';
import {Subscriber} from '../Subscriber';
import {Observable} from '../Observable';
/**
* @return {Observable<any[]>|WebSocketSubject<T>|Observable<T>}
* @method toArray
* @owner Observable
*/
export function toArray<T>(): Observable<T[]> {
return this.lift(new ToArrayOperator());
}
export interface ToArraySignature<T> {
(): Observable<T[]>;
}
class ToArrayOperator<T> implements Operator<T, T[]> {
call(subscriber: Subscriber<T[]>, source: any): any {
return source._subscribe(new ToArraySubscriber(subscriber));
}
}
/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
* @extends {Ignored}
*/
class ToArraySubscriber<T> extends Subscriber<T> {
private array: T[] = [];
constructor(destination: Subscriber<T[]>) {
super(destination);
}
protected _next(x: T) {
this.array.push(x);
}
protected _complete() {
this.destination.next(this.array);
this.destination.complete();
}
}