项目原始demo,不改动
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 

18 line
508 B

  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