Front end of the Slack clone application.

OuterSubscriber.js 508B

123456789101112131415161718
  1. import { Subscriber } from './Subscriber';
  2. /**
  3. * We need this JSDoc comment for affecting ESDoc.
  4. * @ignore
  5. * @extends {Ignored}
  6. */
  7. export class OuterSubscriber extends Subscriber {
  8. notifyNext(outerValue, innerValue, outerIndex, innerIndex, innerSub) {
  9. this.destination.next(innerValue);
  10. }
  11. notifyError(error, innerSub) {
  12. this.destination.error(error);
  13. }
  14. notifyComplete(innerSub) {
  15. this.destination.complete();
  16. }
  17. }
  18. //# sourceMappingURL=OuterSubscriber.js.map