Skip to content

Commit 958e9f2

Browse files
committedMay 6, 2017
feat(VirtualObserver): implements VirtualObserver
1 parent 75ed20d commit 958e9f2

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
 

‎src/VirtualObserver.ts

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import * as Rx from 'rxjs';
2+
import { Scheduler } from 'rxjs/Scheduler';
3+
import { TestMessageValue } from './TestMessageValue';
4+
5+
/**
6+
* Observer interface allows to record emitted values in form of TestMessageValue for inspection
7+
*
8+
*/
9+
export interface VirtualObserver<T = string> extends Rx.Observer<T> {
10+
readonly messages: Readonly<Array<TestMessageValue<T>>>;
11+
}
12+
13+
export class BaseVirtualObserver<T = string> implements VirtualObserver<T> {
14+
public readonly messages: Readonly<Array<TestMessageValue<T>>> = [];
15+
16+
constructor(private readonly scheduler: Scheduler) {
17+
}
18+
19+
next(value: T): void {
20+
this.messages.push(new TestMessageValue(this.scheduler.now(), Rx.Notification.createNext(value)));
21+
}
22+
23+
error(value: any): void {
24+
this.messages.push(new TestMessageValue<any>(this.scheduler.now(), Rx.Notification.createError(value)));
25+
}
26+
27+
complete(): void {
28+
this.messages.push(new TestMessageValue(this.scheduler.now(), Rx.Notification.createComplete()));
29+
}
30+
}

0 commit comments

Comments
 (0)