File tree 1 file changed +30
-0
lines changed
1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments