Ejemplo n.º 1
0
      (source$: GroupedObservable<any, any>) =>
        dematerialize.call(
          map.call(
            exhaustMap.call(source$, resolveEffectSource),
            (output: EffectNotification) => {
              verifyOutput(output, this.errorReporter);

              return output.notification;
            }
          )
        )
Ejemplo n.º 2
0
      (source$: GroupedObservable<any, any>) =>
        dematerialize.call(
          filter.call(
            map.call(
              exhaustMap.call(source$, resolveEffectSource),
              (output: EffectNotification) => {
                verifyOutput(output, this.errorHandler);

                return output.notification;
              }
            ),
            (notification: Notification<any>) => notification.kind === 'N'
          )
        )