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


TypeScript rxjs.Subscription類代碼示例

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


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

示例1: afterEach

 afterEach(() => {
   onPositionChangeSubscription.unsubscribe();
   document.body.removeChild(scrollable);
 });
開發者ID:mstawick,項目名稱:material2,代碼行數:4,代碼來源:connected-position-strategy.spec.ts

示例2: ngOnDestroy

 ngOnDestroy(): void {
   this.routerStateDataSubscription.unsubscribe();
 }
開發者ID:slamdunking,項目名稱:search-maven-org,代碼行數:3,代碼來源:navbar.component.ts

示例3: ngOnDestroy

 ngOnDestroy() {
   this.actionsSubscription.unsubscribe();
 }
開發者ID:our-city-app,項目名稱:plugin-its-you-online-auth,代碼行數:3,代碼來源:view-organization.component.ts

示例4: ngOnDestroy

	public ngOnDestroy() : void {

		( this.paramMapSubscription ) && this.paramMapSubscription.unsubscribe();

	}
開發者ID:bennadel,項目名稱:JavaScript-Demos,代碼行數:5,代碼來源:prototype-conversation-view.component.ts

示例5: onCommunicationManagerStopping

 onCommunicationManagerStopping() {
     super.onCommunicationManagerStopping();
     this._advertiseSubscription && this._advertiseSubscription.unsubscribe();
 }
開發者ID:coatyio,項目名稱:coaty-js,代碼行數:4,代碼來源:object-cache-controller.ts

示例6: ngOnDestroy

 ngOnDestroy() {
   this._intlSubscription.unsubscribe();
   this._focusMonitor.stopMonitoring(this._element.nativeElement);
 }
開發者ID:OkBayat,項目名稱:material2,代碼行數:4,代碼來源:step-header.ts

示例7: ngOnDestroy

 public ngOnDestroy(){
   this.paramsSubscription.unsubscribe();
 }
開發者ID:CubicleJockey,項目名稱:Udemy,代碼行數:3,代碼來源:home.component.ts

示例8: afterEach

 afterEach(() => {
   httpClient.verify();
   subscription.unsubscribe();
 });
開發者ID:ehunter-usgs,項目名稱:earthquake-eventpages,代碼行數:4,代碼來源:geo.service.spec.ts

示例9: ngOnDestroy

 ngOnDestroy() {
     this.sub.unsubscribe()
 }
開發者ID:zodiac-team,項目名稱:zodiac-ui,代碼行數:3,代碼來源:link-panel.component.ts

示例10: ngOnDestroy

 ngOnDestroy() {
   if (this.sub != null) {
     this.sub.unsubscribe();
   }
 }
開發者ID:Denhai,項目名稱:everyday-butter,代碼行數:5,代碼來源:authenticated.directive.ts


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