Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OuterSubscriber.js 416B

12345678910111213
  1. import { Subscriber } from './Subscriber';
  2. export class OuterSubscriber extends Subscriber {
  3. notifyNext(outerValue, innerValue, outerIndex, innerIndex, innerSub) {
  4. this.destination.next(innerValue);
  5. }
  6. notifyError(error, innerSub) {
  7. this.destination.error(error);
  8. }
  9. notifyComplete(innerSub) {
  10. this.destination.complete();
  11. }
  12. }
  13. //# sourceMappingURL=OuterSubscriber.js.map