项目原始demo,不改动
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。
 
 
 
 

18 行
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