當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Subject.Subject類代碼示例

本文整理匯總了TypeScript中rxjs/Subject.Subject的典型用法代碼示例。如果您正苦於以下問題:TypeScript Subject類的具體用法?TypeScript Subject怎麽用?TypeScript Subject使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Subject類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1:

 this.image.onerror = (err) => {
   this.imageLoadSubject.complete();
 };
開發者ID:ckile,項目名稱:GoldenVoyage,代碼行數:3,代碼來源:gvCardBlurHelper.service.ts

示例2: constructor

 constructor(event: esriMouseEvent) {
     super(event);
     this._featureSubject = new Subject();
     this.features = this._featureSubject.asObservable();
 }
開發者ID:milesap,項目名稱:fgpv-vpgf,代碼行數:5,代碼來源:events.ts

示例3:

                .then((directoryUser:DirectoryUser) => {
                    this._sessionUser.isAdmin = directoryUser.isAdmin;
                    this.isSignedInSubject.next(true);

                    return this._sessionUser.hostedDomain === GoogleApplicationAccount.domain;
                })
開發者ID:omostepaniuk,項目名稱:godiap,代碼行數:6,代碼來源:authentication.service.ts

示例4:

 this.get('assets/talks.json').subscribe((talks: Array<TalkModel>) => {
     this.talks = talks;
     talks.forEach((talk: TalkModel) => subject.next(talk));
     subject.complete();
 });
開發者ID:manland,項目名稱:angular2-bien-ou-pas-bien,代碼行數:5,代碼來源:Server.ts

示例5:

 .then(user => {
   logger.debug('has authenticated user', user);
   authState.next({ state: 'signedIn', user: user });
 })
開發者ID:lukethompson,項目名稱:aws-amplify,代碼行數:4,代碼來源:auth.decorator.ts

示例6: observe

 observe(): Observable<any> {
   return this._subject.asObservable();
 }
開發者ID:websublime,項目名稱:kong-console,代碼行數:3,代碼來源:base.model.ts

示例7: onEnd

  private onEnd(event: TransitionEvent | AnimationEvent): void {

    if (!this.animationEnd.closed) {
      this.animationEnd.next(event);
    }
  }
開發者ID:CaselIT,項目名稱:angular2-modal,代碼行數:6,代碼來源:base-dynamic-component.ts

示例8: ngOnDestroy

 ngOnDestroy(): void {
   if (this.animationEnd && !this.animationEnd.closed) {
     this.animationEnd.complete();
   }
 }
開發者ID:CaselIT,項目名稱:angular2-modal,代碼行數:5,代碼來源:base-dynamic-component.ts

示例9:

 res => this.dispatcher$.next(res),
開發者ID:andreruffert,項目名稱:tinydraft,代碼行數:1,代碼來源:dispatcher.ts


注:本文中的rxjs/Subject.Subject類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。