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


TypeScript Subject.next方法代碼示例

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


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

示例1:

 const handler = (...args: any[]) => subject.next(...args);
開發者ID:deanius,項目名稱:RxJS,代碼行數:1,代碼來源:from-spec.ts

示例2:

  const whenActionIsDispatched = (action: ActionOf<any>) => {
    action$.next(action);

    return instance;
  };
開發者ID:grafana,項目名稱:grafana,代碼行數:5,代碼來源:epicTester.ts

示例3: it

 it('should open settings dialog when menu event called.', () => {
     menuMessages.next(MenuEvent.OPEN_SETTINGS);
     expect(settingsDialog.open).toHaveBeenCalled();
 });
開發者ID:suiruiw,項目名稱:geeks-diary,代碼行數:4,代碼來源:app-layout-sidenav.component.spec.ts

示例4:

 gc.observable.subscribe((x)=>{
     console.log('testPF.gc.next');
     _s.next(x);
     
 },()=>{},
開發者ID:ratscrew,項目名稱:rxServer,代碼行數:5,代碼來源:example.ts

示例5: confirm

 confirm(): void {
   const processedInputs = new Object();
   this.componentRequests.forEach(cr => { processedInputs[cr.name] = cr.getProcessedValue(); });
   this.onClose.next(processedInputs);
   this.bsModalRef.hide();
 }
開發者ID:imagej,項目名稱:imagej-server,代碼行數:6,代碼來源:modal.component.ts

示例6: submit

 submit() {
   this.onSubmit.next(this.snapName);
 }
開發者ID:hzhang-wx,項目名稱:ceph,代碼行數:3,代碼來源:rollback-confimation-modal.component.ts

示例7: clearAllServerGroups

 public clearAllServerGroups(): void {
   this.serverGroups.length = 0;
   this.serverGroupsStream.next();
 }
開發者ID:emjburns,項目名稱:deck,代碼行數:4,代碼來源:MultiselectModel.ts

示例8:

export const set = (newBreadcrumbs: Breadcrumb[]) => {
  breadcrumbsSubject.next(newBreadcrumbs);

  // If a plugin called set, don't clear on route change.
  shouldClear = false;
};
開發者ID:salihkardan,項目名稱:kibana,代碼行數:6,代碼來源:breadcrumb_state.ts

示例9: dispatch

 dispatch(action: Action): void {
     this._subject.next(action);
 }
開發者ID:saneyuki,項目名稱:linkplaces,代碼行數:3,代碼來源:SidebarIntent.ts

示例10:

 res => { this.locations.next(res.data); },
開發者ID:jsec516,項目名稱:ng2-location-tracker,代碼行數:1,代碼來源:location.service.ts


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